diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 20:08:37 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 20:08:37 +0800 |
commit | 4e5525b4be19a5420da69e36d65240ad0ea3056b (patch) | |
tree | 66c04d808c8cf7548f5118fb30cb45c1eeede94e /www/w3c-httpd | |
parent | 0178e4d2a90833e31a5bb31c9387dd658f3dbfb5 (diff) | |
download | freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.tar.gz freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.tar.zst freebsd-ports-gnome-4e5525b4be19a5420da69e36d65240ad0ea3056b.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.
Diffstat (limited to 'www/w3c-httpd')
-rw-r--r-- | www/w3c-httpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/w3c-httpd/Makefile b/www/w3c-httpd/Makefile index fa007af052e1..48cfa98c4156 100644 --- a/www/w3c-httpd/Makefile +++ b/www/w3c-httpd/Makefile @@ -26,7 +26,7 @@ pre-configure: @${ECHO_MSG} "Set the environment variable MD5_PW if you want MD5 encrypted passwords." @${ECHO_MSG} "" .else - @${ECHO} "CFLAGS += -DMD5_PW" >> ${WRKDIR}/All/${OSNAME}/Makefile.include + @${ECHO_CMD} "CFLAGS += -DMD5_PW" >> ${WRKDIR}/All/${OSNAME}/Makefile.include .endif do-install: |