diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
commit | a80f0bd0dd7d4db692d81c1f2fe73f117828db0d (patch) | |
tree | e1ba2085cc7146328f30ef47d6e9941c2e1d05c3 /x11/kdebase3 | |
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.
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/kdebase3/Makefile b/x11/kdebase3/Makefile index 1173bb45a718..f5be27d77504 100644 --- a/x11/kdebase3/Makefile +++ b/x11/kdebase3/Makefile @@ -55,8 +55,8 @@ pre-everything:: .endif post-extract: - @${ECHO} "#!/bin/sh" > ${WRKSRC}/mkpamserv - @${ECHO} "exit 0" >> ${WRKSRC}/mkpamserv + @${ECHO_CMD} "#!/bin/sh" > ${WRKSRC}/mkpamserv + @${ECHO_CMD} "exit 0" >> ${WRKSRC}/mkpamserv post-patch: .if !defined(WITH_MOTIF) |