diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
commit | 32c83edfbcce207c560685385be28ffc02faad2c (patch) | |
tree | 8b9a9aef75ca0c44c811a5951f9fc90aec5e4c56 /devel/cvsgraph/Makefile | |
parent | Update to 2.4.13. (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.
Use command macros where appropriate.
Notes
Notes:
svn path=/head/; revision=53952
Diffstat (limited to 'devel/cvsgraph/Makefile')
-rw-r--r-- | devel/cvsgraph/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/cvsgraph/Makefile b/devel/cvsgraph/Makefile index f01ef8467266..eaa4b601c9f0 100644 --- a/devel/cvsgraph/Makefile +++ b/devel/cvsgraph/Makefile @@ -49,17 +49,17 @@ post-configure: ${WRKSRC}/Makefile pre-install: - ${ECHO} bin/cvsgraph > ${PLIST} - ${ECHO} etc/cvsgraph.conf >> ${PLIST} + ${ECHO_CMD} bin/cvsgraph > ${PLIST} + ${ECHO_CMD} etc/cvsgraph.conf >> ${PLIST} .if !defined(NOPORTDOCS) .for i in ${DOCS} - ${ECHO} ${DOCDIR}/${i} >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/${i} >> ${PLIST} .endfor .for i in ${EXAMPLES} - ${ECHO} share/examples/${PORTNAME}/${i} >> ${PLIST} + ${ECHO_CMD} share/examples/${PORTNAME}/${i} >> ${PLIST} .endfor - ${ECHO} @dirrm share/examples/${PORTNAME} >> ${PLIST} - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} @dirrm share/examples/${PORTNAME} >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: |