diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
commit | 4adc5a8a717b83cd9a139cd4c92ea01102d602e2 (patch) | |
tree | 1e0d9f19cde131b110f2420762ff686ae845cbc8 /www/seamonkey2 | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (diff) |
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.
Notes
Notes:
svn path=/head/; revision=53960
Diffstat (limited to 'www/seamonkey2')
-rw-r--r-- | www/seamonkey2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile index e10cbff96a2c..63788a04e35b 100644 --- a/www/seamonkey2/Makefile +++ b/www/seamonkey2/Makefile @@ -75,8 +75,8 @@ post-build: ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla @(cd ${WRKSRC}/dist/bin; \ ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ECHO} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ - ${ECHO} locale,install,select,en-US >> chrome/installed-chrome.txt; \ + ${ECHO_CMD} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ + ${ECHO_CMD} locale,install,select,en-US >> chrome/installed-chrome.txt; \ ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) @/usr/bin/find ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \ /usr/bin/xargs ${RMDIR} 2> /dev/null || ${TRUE} |