diff options
-rw-r--r-- | ftp/bsdftpd-ssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp/bsdftpd-ssl/Makefile b/ftp/bsdftpd-ssl/Makefile index 259821d2de61..41d0cbc6c66e 100644 --- a/ftp/bsdftpd-ssl/Makefile +++ b/ftp/bsdftpd-ssl/Makefile @@ -19,7 +19,7 @@ COMMENT= FTP command-line client utility with the TLS/SSL support 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: |