diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
commit | b42679b22abe748375dc103dc7af39b174da3d87 (patch) | |
tree | 6f292c9bbc0306f65069d5ad6040e8e4e291c376 /x11-wm/aewm | |
parent | 4e5525b4be19a5420da69e36d65240ad0ea3056b (diff) | |
download | FreeBSD-ports-b42679b22abe748375dc103dc7af39b174da3d87.zip FreeBSD-ports-b42679b22abe748375dc103dc7af39b174da3d87.tar.gz |
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.
Diffstat (limited to 'x11-wm/aewm')
-rw-r--r-- | x11-wm/aewm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-wm/aewm/Makefile b/x11-wm/aewm/Makefile index 64f22d7..b1f63d4 100644 --- a/x11-wm/aewm/Makefile +++ b/x11-wm/aewm/Makefile @@ -21,12 +21,12 @@ USE_GMAKE= yes USE_X_PREFIX= yes pre-install: - ${ECHO} bin/aewm > ${PLIST} + ${ECHO_CMD} bin/aewm > ${PLIST} .if !defined(NOPORTDOCS) for i in ${DOCS}; \ - do ${ECHO} ${DOCDIR}/$${i} >> ${PLIST}; \ + do ${ECHO_CMD} ${DOCDIR}/$${i} >> ${PLIST}; \ done - ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: |