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/wb0 | |
parent | 77f6c01ede076821a0791ed785bded77734e07d9 (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/wb0')
-rw-r--r-- | www/wb0/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/www/wb0/Makefile b/www/wb0/Makefile index a9053d773e29..c8623eefb83c 100644 --- a/www/wb0/Makefile +++ b/www/wb0/Makefile @@ -28,19 +28,19 @@ post-patch: ${WRKSRC}/wb0.c pre-install: - ${ECHO} bin/wb0 > ${PLIST} + ${ECHO_CMD} bin/wb0 > ${PLIST} .if !defined(NOPORTDOCS) .for i in ${DOCS} - ${ECHO} ${DOCDIR}/${i} >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/${i} >> ${PLIST} .endfor - ${ECHO} ${DOCDIR}/wb0.config.README >> ${PLIST} - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/wb0.config.README >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} .endif - ${ECHO} etc/wb0.config >> ${PLIST} + ${ECHO_CMD} etc/wb0.config >> ${PLIST} for i in `find ${PREFIX}/share/wb0 -type f`; \ - do ${ECHO} share/wb0/`${BASENAME} $${i}` >> ${PLIST}; \ + do ${ECHO_CMD} share/wb0/`${BASENAME} $${i}` >> ${PLIST}; \ done - ${ECHO} @dirrm share/wb0 >> ${PLIST} + ${ECHO_CMD} @dirrm share/wb0 >> ${PLIST} post-install: .if !defined(NOPORTDOCS) |