diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
commit | 4e5525b4be19a5420da69e36d65240ad0ea3056b (patch) | |
tree | 66c04d808c8cf7548f5118fb30cb45c1eeede94e /www/publicfile | |
parent | 0178e4d2a90833e31a5bb31c9387dd658f3dbfb5 (diff) | |
download | FreeBSD-ports-4e5525b4be19a5420da69e36d65240ad0ea3056b.zip FreeBSD-ports-4e5525b4be19a5420da69e36d65240ad0ea3056b.tar.gz |
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.
Diffstat (limited to 'www/publicfile')
-rw-r--r-- | www/publicfile/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/publicfile/Makefile b/www/publicfile/Makefile index a7bcfae..5d1e0d7 100644 --- a/www/publicfile/Makefile +++ b/www/publicfile/Makefile @@ -20,8 +20,8 @@ ALL_TARGET= it INSTALL_TARGET= setup check post-patch: - @${ECHO} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc - @${ECHO} "${CC} -s" > ${WRKSRC}/conf-ld - @${ECHO} "${PREFIX}" > ${WRKSRC}/conf-home + @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc + @${ECHO_CMD} "${CC} -s" > ${WRKSRC}/conf-ld + @${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-home .include <bsd.port.mk> |