diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 12:08:37 +0000 |
commit | 4e5525b4be19a5420da69e36d65240ad0ea3056b (patch) | |
tree | 66c04d808c8cf7548f5118fb30cb45c1eeede94e /www/horde2 | |
parent | 0178e4d2a90833e31a5bb31c9387dd658f3dbfb5 (diff) | |
download | FreeBSD-ports-4e5525b4be19a5420da69e36d65240ad0ea3056b.zip FreeBSD-ports-4e5525b4be19a5420da69e36d65240ad0ea3056b.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 'www/horde2')
-rw-r--r-- | www/horde2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/horde2/Makefile b/www/horde2/Makefile index 5e7facf..f676cc2 100644 --- a/www/horde2/Makefile +++ b/www/horde2/Makefile @@ -114,8 +114,8 @@ do-install: ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ ${PERL} -pi -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:g" ${APACHE_CONF} ; \ ${PERL} -pi -e "s:${HORDEDIR}/phplib:${PHP_LIB}:g" ${APACHE_CONF} ; \ - ${ECHO} "# Horde's include directory" >> ${APACHE_CONF} ; \ - ${ECHO} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ + ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ + ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ fi) @${CHOWN} -R www:www ${HORDEDIR} @${CHMOD} -R o-rwx ${CONFDIR} |