diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
commit | f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1 (patch) | |
tree | 0374d55450aad7c24b92569982b2b7a7c895ca7a /ftp/vsftpd | |
parent | fdab120e8f7f5dc349cb1887034af51fe4834d3c (diff) | |
download | freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.gz freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.zst freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.zip |
Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
Use command macros where appropriate.
Diffstat (limited to 'ftp/vsftpd')
-rw-r--r-- | ftp/vsftpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftp/vsftpd/Makefile b/ftp/vsftpd/Makefile index 85258a7d81ca..757099f86f5c 100644 --- a/ftp/vsftpd/Makefile +++ b/ftp/vsftpd/Makefile @@ -22,7 +22,7 @@ post-patch: @${PERL} -pi -e 's@/etc/vsftpd.conf@${PREFIX}/etc/vsftpd.conf@' \ ${WRKSRC}/defs.h @${PERL} -pi -e 's@ -ldl@@; s@^CFLAGS.*$$@@' ${WRKSRC}/Makefile - @${ECHO} "secure_chroot_dir=${PREFIX}/share/vsftpd/empty" >> \ + @${ECHO_CMD} "secure_chroot_dir=${PREFIX}/share/vsftpd/empty" >> \ ${WRKSRC}/vsftpd.conf do-install: |