diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:58:52 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:58:52 +0000 |
commit | 77f6c01ede076821a0791ed785bded77734e07d9 (patch) | |
tree | 32f6b967d4af1824b6eee01059853d1ba5d523d0 /textproc/docbook-400 | |
parent | 897d06aa9731645e0a7fa7c315028dcdbfa3c798 (diff) | |
download | ports-77f6c01ede076821a0791ed785bded77734e07d9.tar.gz ports-77f6c01ede076821a0791ed785bded77734e07d9.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.
Notes
Notes:
svn path=/head/; revision=53959
Diffstat (limited to 'textproc/docbook-400')
-rw-r--r-- | textproc/docbook-400/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/docbook-400/Makefile b/textproc/docbook-400/Makefile index 0a1672ef6118..6f015e568c19 100644 --- a/textproc/docbook-400/Makefile +++ b/textproc/docbook-400/Makefile @@ -38,7 +38,7 @@ pre-install: do-install: @unzip -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/4.0 @${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/4.0/catalog - @${ECHO} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/4.0/catalog + @${ECHO_CMD} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/4.0/catalog @${CHMOD} ${SHAREMODE} ${INSTDIR}/4.0/* @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR} |