diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 12:14:18 +0000 |
commit | b42679b22abe748375dc103dc7af39b174da3d87 (patch) | |
tree | 6f292c9bbc0306f65069d5ad6040e8e4e291c376 /x11/kde4-workspace/Makefile | |
parent | 4e5525b4be19a5420da69e36d65240ad0ea3056b (diff) | |
download | FreeBSD-ports-b42679b22abe748375dc103dc7af39b174da3d87.zip FreeBSD-ports-b42679b22abe748375dc103dc7af39b174da3d87.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 'x11/kde4-workspace/Makefile')
-rw-r--r-- | x11/kde4-workspace/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/kde4-workspace/Makefile b/x11/kde4-workspace/Makefile index 1173bb4..f5be27d 100644 --- a/x11/kde4-workspace/Makefile +++ b/x11/kde4-workspace/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) |