From 0178e4d2a90833e31a5bb31c9387dd658f3dbfb5 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 29 Jan 2002 11:58:52 +0000 Subject: 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. --- shells/psh/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shells/psh') diff --git a/shells/psh/Makefile b/shells/psh/Makefile index e84a9771dfa5..1138c9ec4c3e 100644 --- a/shells/psh/Makefile +++ b/shells/psh/Makefile @@ -46,7 +46,7 @@ post-install: @${ECHO} "Updating /etc/shells" @${CP} /etc/shells /etc/shells.bak @(${GREP} -v ${PREFIX}/bin/psh /etc/shells.bak; \ - ${ECHO} ${PREFIX}/bin/psh) > /etc/shells + ${ECHO_CMD} ${PREFIX}/bin/psh) > /etc/shells @${RM} /etc/shells.bak .include -- cgit