diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 20:08:37 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 20:08:37 +0800 |
commit | 4e5525b4be19a5420da69e36d65240ad0ea3056b (patch) | |
tree | 66c04d808c8cf7548f5118fb30cb45c1eeede94e /www/mmosaic | |
parent | 0178e4d2a90833e31a5bb31c9387dd658f3dbfb5 (diff) | |
download | freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.tar.gz freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.tar.zst freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.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.
Diffstat (limited to 'www/mmosaic')
-rw-r--r-- | www/mmosaic/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/mmosaic/Makefile b/www/mmosaic/Makefile index 5cb49b3faf86..ac4e5913890a 100644 --- a/www/mmosaic/Makefile +++ b/www/mmosaic/Makefile @@ -27,9 +27,9 @@ USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/mMosaic-src-${PORTVERSION} pre-install: - ${ECHO} bin/mmosaic > ${PLIST} + ${ECHO_CMD} bin/mmosaic > ${PLIST} cd ${WRKSRC}/Copyrights; for i in `find * -type f`; do \ - ${ECHO} share/doc/mmosaic/$${i} >> ${PLIST}; \ + ${ECHO_CMD} share/doc/mmosaic/$${i} >> ${PLIST}; \ done do-install: |