diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
commit | 019f5b8781cb7f4aed099b67cf8af434adc77d7a (patch) | |
tree | 906e64279e88d62172a4b9809ccf36d0b7c443ec /databases/php-sqlrelay | |
parent | 476fa54a5c6f73ef5e86683a76da131e57c54e53 (diff) | |
download | FreeBSD-ports-019f5b8781cb7f4aed099b67cf8af434adc77d7a.zip FreeBSD-ports-019f5b8781cb7f4aed099b67cf8af434adc77d7a.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 'databases/php-sqlrelay')
-rw-r--r-- | databases/php-sqlrelay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/php-sqlrelay/Makefile b/databases/php-sqlrelay/Makefile index 70fcb5e..da25ea9 100644 --- a/databases/php-sqlrelay/Makefile +++ b/databases/php-sqlrelay/Makefile @@ -40,7 +40,7 @@ pre-install: post-install: dir=`php-config --extension-dir | ${SED} 's,^${LOCALBASE}/,,'`; \ - ${ECHO} "$$dir/sql_relay.so" >> ${TMPPLIST}; \ - ${ECHO} "@unexec rmdir %D/$$dir 2>/dev/null || true" >> ${TMPPLIST} + ${ECHO_CMD} "$$dir/sql_relay.so" >> ${TMPPLIST}; \ + ${ECHO_CMD} "@unexec rmdir %D/$$dir 2>/dev/null || true" >> ${TMPPLIST} .include <bsd.port.mk> |