Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jul 2013 14:09:29 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323294 - head/ftp/bsdftpd-ssl
Message-ID:  <201307191409.r6JE9Tjl097353@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Jul 19 14:09:28 2013
New Revision: 323294
URL: http://svnweb.freebsd.org/changeset/ports/323294

Log:
  Fix build on HEAD, by properly defining the MAKE_ENV and by actually using it.
  
  Reported by:	pkg-fallout

Modified:
  head/ftp/bsdftpd-ssl/Makefile

Modified: head/ftp/bsdftpd-ssl/Makefile
==============================================================================
--- head/ftp/bsdftpd-ssl/Makefile	Fri Jul 19 14:08:02 2013	(r323293)
+++ head/ftp/bsdftpd-ssl/Makefile	Fri Jul 19 14:09:28 2013	(r323294)
@@ -19,7 +19,7 @@ COMMENT=	FTP command-line client utility
 
 USE_OPENSSL=	yes
 
-MAKE_ENV+=	OBJFORMAT=	elf
+MAKE_ENV+=	OBJFORMAT=elf
 
 .include <bsd.port.pre.mk>
 
@@ -61,10 +61,10 @@ pre-build:
 
 do-build:
 # Client part
-	(cd ${WRKSRC}/port && make && cd ${WRKSRC}/ftp && make) || exit
+	(cd ${WRKSRC}/port && ${SETENV} ${MAKE_ENV} make && cd ${WRKSRC}/ftp && ${SETENV} ${MAKE_ENV} make) || exit
 # Server part
 .if !defined(CLIENT_ONLY)
-	(cd ${WRKSRC}/ftpd && make) || exit
+	(cd ${WRKSRC}/ftpd && ${SETENV} ${MAKE_ENV} make) || exit
 .endif
 
 do-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307191409.r6JE9Tjl097353>