svn commit: r323294 - head/ftp/bsdftpd-ssl

Baptiste Daroussin bapt at FreeBSD.org
Fri Jul 19 14:09:29 UTC 2013


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:


More information about the svn-ports-all mailing list