diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
commit | a80f0bd0dd7d4db692d81c1f2fe73f117828db0d (patch) | |
tree | e1ba2085cc7146328f30ef47d6e9941c2e1d05c3 /x11-wm/qlwm | |
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=53961
Diffstat (limited to 'x11-wm/qlwm')
-rw-r--r-- | x11-wm/qlwm/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/x11-wm/qlwm/Makefile b/x11-wm/qlwm/Makefile index 7ab1087c6a3a..786650ea2754 100644 --- a/x11-wm/qlwm/Makefile +++ b/x11-wm/qlwm/Makefile @@ -36,23 +36,23 @@ post-patch: s|^MOC|#MOC|g' pre-install: - ${ECHO} bin/qlwm > ${PLIST} + ${ECHO_CMD} bin/qlwm > ${PLIST} .for i in biff dclock qlwm - ${ECHO} ${LIBDIR}/$i >> ${PLIST} + ${ECHO_CMD} ${LIBDIR}/$i >> ${PLIST} .endfor - for i in `cd ${WRKSRC}/files; ${ECHO} *`; do \ - ${ECHO} ${LIBDIR}/files/$$i >> ${PLIST}; \ + for i in `cd ${WRKSRC}/files; ${ECHO_CMD} *`; do \ + ${ECHO_CMD} ${LIBDIR}/files/$$i >> ${PLIST}; \ done .if !defined(NOPORTDOCS) .for i in ${DOCS} - ${ECHO} ${DOCDIR}/$i >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/$i >> ${PLIST} .endfor .endif .for i in ${LIBDIR}/files ${LIBDIR} - ${ECHO} @dirrm $i >> ${PLIST} + ${ECHO_CMD} @dirrm $i >> ${PLIST} .endfor .if !defined(NOPORTDOCS) - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: |