summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:58:52 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:58:52 +0000
commit77f6c01ede076821a0791ed785bded77734e07d9 (patch)
tree32f6b967d4af1824b6eee01059853d1ba5d523d0 /shells
parentUse ${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=53959
Diffstat (limited to 'shells')
-rw-r--r--shells/44bsd-csh/Makefile2
-rw-r--r--shells/bash/Makefile2
-rw-r--r--shells/bash2/Makefile2
-rw-r--r--shells/bash3/Makefile2
-rw-r--r--shells/esh/Makefile2
-rw-r--r--shells/flash/Makefile2
-rw-r--r--shells/ksh93/Makefile2
-rw-r--r--shells/mudsh/Makefile2
-rw-r--r--shells/osh/Makefile2
-rw-r--r--shells/pash/Makefile2
-rw-r--r--shells/pdksh/Makefile2
-rw-r--r--shells/perlsh/Makefile2
-rw-r--r--shells/psh/Makefile2
-rw-r--r--shells/sash/Makefile2
-rw-r--r--shells/tcsh/Makefile2
-rw-r--r--shells/wapsh/Makefile2
-rw-r--r--shells/zsh-devel/Makefile2
-rw-r--r--shells/zsh/Makefile2
18 files changed, 18 insertions, 18 deletions
diff --git a/shells/44bsd-csh/Makefile b/shells/44bsd-csh/Makefile
index 078ca9861d14..a45e7771712f 100644
--- a/shells/44bsd-csh/Makefile
+++ b/shells/44bsd-csh/Makefile
@@ -35,7 +35,7 @@ do-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/44bsd-csh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/44bsd-csh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/44bsd-csh) > /etc/shells
@${RM} /etc/shells.bak
tarup:
diff --git a/shells/bash/Makefile b/shells/bash/Makefile
index 0c109415f523..454de9a3c832 100644
--- a/shells/bash/Makefile
+++ b/shells/bash/Makefile
@@ -26,7 +26,7 @@ MAN1= bash.1 bashbug.1
post-install:
${CP} /etc/shells /etc/shells.bak
- (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO} ${PREFIX}/bin/bash) >/etc/shells
+ (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO_CMD} ${PREFIX}/bin/bash) >/etc/shells
${RM} /etc/shells.bak
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/bash
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile
index 0c109415f523..454de9a3c832 100644
--- a/shells/bash2/Makefile
+++ b/shells/bash2/Makefile
@@ -26,7 +26,7 @@ MAN1= bash.1 bashbug.1
post-install:
${CP} /etc/shells /etc/shells.bak
- (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO} ${PREFIX}/bin/bash) >/etc/shells
+ (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO_CMD} ${PREFIX}/bin/bash) >/etc/shells
${RM} /etc/shells.bak
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/bash
diff --git a/shells/bash3/Makefile b/shells/bash3/Makefile
index 0c109415f523..454de9a3c832 100644
--- a/shells/bash3/Makefile
+++ b/shells/bash3/Makefile
@@ -26,7 +26,7 @@ MAN1= bash.1 bashbug.1
post-install:
${CP} /etc/shells /etc/shells.bak
- (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO} ${PREFIX}/bin/bash) >/etc/shells
+ (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO_CMD} ${PREFIX}/bin/bash) >/etc/shells
${RM} /etc/shells.bak
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/bash
diff --git a/shells/esh/Makefile b/shells/esh/Makefile
index 1885a2945415..394b3de02c87 100644
--- a/shells/esh/Makefile
+++ b/shells/esh/Makefile
@@ -20,7 +20,7 @@ do-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/esh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/esh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/esh) > /etc/shells
@${RM} /etc/shells.bak
.if !defined(NOPORTDOCS)
${INSTALL_DATA} ${WRKSRC}/doc/esh.info ${PREFIX}/info/esh.info
diff --git a/shells/flash/Makefile b/shells/flash/Makefile
index 6d3096a74008..ce3ac0ebc515 100644
--- a/shells/flash/Makefile
+++ b/shells/flash/Makefile
@@ -63,7 +63,7 @@ post-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/flash /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/flash) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/flash) > /etc/shells
@${RM} /etc/shells.bak
@${SED} -e "s:/usr/local:${PREFIX}:g" ${PKGMESSAGE}
diff --git a/shells/ksh93/Makefile b/shells/ksh93/Makefile
index fe666df84f25..098cfaaf730d 100644
--- a/shells/ksh93/Makefile
+++ b/shells/ksh93/Makefile
@@ -39,7 +39,7 @@ post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/ksh93 /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/ksh93) >/etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/ksh93) >/etc/shells
@${RM} -f /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/mudsh/Makefile b/shells/mudsh/Makefile
index 87d05e35ae7d..5cf8e2398836 100644
--- a/shells/mudsh/Makefile
+++ b/shells/mudsh/Makefile
@@ -33,7 +33,7 @@ post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/mudsh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/mudsh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/mudsh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/osh/Makefile b/shells/osh/Makefile
index 1816361cce4f..0ba79f9de191 100644
--- a/shells/osh/Makefile
+++ b/shells/osh/Makefile
@@ -20,7 +20,7 @@ post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/osh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/osh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/pash/Makefile b/shells/pash/Makefile
index 2945497e9be0..81b1ed3decac 100644
--- a/shells/pash/Makefile
+++ b/shells/pash/Makefile
@@ -24,7 +24,7 @@ post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/pash) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/pash) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/pdksh/Makefile b/shells/pdksh/Makefile
index 93e1f86c3caf..a38e18e57a15 100644
--- a/shells/pdksh/Makefile
+++ b/shells/pdksh/Makefile
@@ -24,7 +24,7 @@ post-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/ksh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/ksh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/ksh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/perlsh/Makefile b/shells/perlsh/Makefile
index e84a9771dfa5..1138c9ec4c3e 100644
--- a/shells/perlsh/Makefile
+++ b/shells/perlsh/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 <bsd.port.mk>
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 <bsd.port.mk>
diff --git a/shells/sash/Makefile b/shells/sash/Makefile
index 60c26deee2ea..748ed00d383f 100644
--- a/shells/sash/Makefile
+++ b/shells/sash/Makefile
@@ -29,7 +29,7 @@ post-install:
@${ECHO_MSG} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/sash /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/sash) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/sash) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile
index b57a02df78d4..9d657379b2a1 100644
--- a/shells/tcsh/Makefile
+++ b/shells/tcsh/Makefile
@@ -59,7 +59,7 @@ post-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/tcsh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/tcsh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/tcsh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.post.mk>
diff --git a/shells/wapsh/Makefile b/shells/wapsh/Makefile
index 81f7dac81f77..026106cbc99a 100644
--- a/shells/wapsh/Makefile
+++ b/shells/wapsh/Makefile
@@ -88,7 +88,7 @@ do-install:
post-install:
@${ECHO} "updating /etc/services"
@${CP} /etc/services /etc/services.bak
- @(${GREP} -v ^htsh /etc/services.bak; ${ECHO} "htsh 3001/tcp # htsh/wapsh server") > /etc/services
+ @(${GREP} -v ^htsh /etc/services.bak; ${ECHO_CMD} "htsh 3001/tcp # htsh/wapsh server") > /etc/services
@if [ ! -f ${PREFIX}/etc/rc.d/htshd.sh ]; then \
${ECHO} "===> Installing ${PREFIX}/etc/rc.d/htshd.sh startup file."; \
${INSTALL_SCRIPT} ${FILESDIR}/htshd.sh ${PREFIX}/etc/rc.d/htshd.sh; \
diff --git a/shells/zsh-devel/Makefile b/shells/zsh-devel/Makefile
index b6e23218c918..6e09fc5f5ad5 100644
--- a/shells/zsh-devel/Makefile
+++ b/shells/zsh-devel/Makefile
@@ -73,7 +73,7 @@ post-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/zsh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile
index d4cd095b5213..5d37d05c9a42 100644
--- a/shells/zsh/Makefile
+++ b/shells/zsh/Makefile
@@ -73,7 +73,7 @@ post-install:
@${ECHO} "Updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; \
- ${ECHO} ${PREFIX}/bin/zsh) > /etc/shells
+ ${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>