diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
commit | c8eb0d48785c0ccaefec1e6760abc6623f08d233 (patch) | |
tree | 22976d84e83439a4ed13de075a5a82fe1d68b428 /databases/firebird-client | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (diff) |
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.
Notes
Notes:
svn path=/head/; revision=53949
Diffstat (limited to 'databases/firebird-client')
-rw-r--r-- | databases/firebird-client/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/firebird-client/Makefile b/databases/firebird-client/Makefile index 0fffe53812ff..227d8c4a3a44 100644 --- a/databases/firebird-client/Makefile +++ b/databases/firebird-client/Makefile @@ -56,7 +56,7 @@ do-configure: do-build: @( \ - ${ECHO} '#!/bin/sh'; ${ECHO} \ + ${ECHO_CMD} '#!/bin/sh'; ${ECHO_CMD} \ '[ -d ${LDCONFIG_RUNLIST} ] && ${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \ ) > ${WRKDIR}/000.${PORTNAME}.sh @( \ |