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/netscape47-communicator | |
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/netscape47-communicator')
-rw-r--r-- | www/netscape47-communicator/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/netscape47-communicator/Makefile b/www/netscape47-communicator/Makefile index 4ef1f7913624..12ecd383150e 100644 --- a/www/netscape47-communicator/Makefile +++ b/www/netscape47-communicator/Makefile @@ -70,7 +70,7 @@ NETSCAPE_DIST_SUBDIR?= communicator/english/${BROWSER_VER}/unix/${NETSCAPE_DIST_ NETSCAPE_DIST_TAG?= x86-unknown-freebsd # | x86-unknown-linux2.2 | x86-bsdi-bsd2 | alpha-dec-osf4.0 BROWSER_VER= ${PORTVERSION} -BROWSER_V!= ${ECHO} ${BROWSER_VER} | sed -e 's/\.//' +BROWSER_V!= ${ECHO_CMD} ${BROWSER_VER} | sed -e 's/\.//' INFILE_HEAD?= 'Communicator,4.76.0.20001006' NO_AUTOADMIN= 'Not available' NO_FORTIFY= 'No need for this version' |