summaryrefslogtreecommitdiffstats
path: root/devel/p4d
diff options
context:
space:
mode:
authorknu <knu@FreeBSD.org>2002-01-29 10:16:28 +0000
committerknu <knu@FreeBSD.org>2002-01-29 10:16:28 +0000
commit683084ba5b0a2fbaac959371c452814420e77ba6 (patch)
tree708e7807b36deea4f04ea6f9464e4e09d8b04ab2 /devel/p4d
parent6fd54384344c267d40b400ec310d64528228d10c (diff)
downloadFreeBSD-ports-683084ba5b0a2fbaac959371c452814420e77ba6.zip
FreeBSD-ports-683084ba5b0a2fbaac959371c452814420e77ba6.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. Use command macros where appropriate.
Diffstat (limited to 'devel/p4d')
-rw-r--r--devel/p4d/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/p4d/Makefile b/devel/p4d/Makefile
index 884641d..e1a608d 100644
--- a/devel/p4d/Makefile
+++ b/devel/p4d/Makefile
@@ -95,11 +95,11 @@ do-install:
post-install:
.for f in ${BIN_FILES}
- ${ECHO} bin/${f} >> ${TMPPLIST}
+ ${ECHO_CMD} bin/${f} >> ${TMPPLIST}
.endfor
.for f in ${SBIN_FILES}
- ${ECHO} sbin/${f} >> ${TMPPLIST}
+ ${ECHO_CMD} sbin/${f} >> ${TMPPLIST}
.endfor
- ${ECHO} "@unexec /bin/rmdir ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST}
+ ${ECHO_CMD} "@unexec /bin/rmdir ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST}
.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud