diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:16:28 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:16:28 +0800 |
commit | 683084ba5b0a2fbaac959371c452814420e77ba6 (patch) | |
tree | 708e7807b36deea4f04ea6f9464e4e09d8b04ab2 /devel/bin86/Makefile | |
parent | 6fd54384344c267d40b400ec310d64528228d10c (diff) | |
download | freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.tar.gz freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.tar.zst freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.zip |
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/bin86/Makefile')
-rw-r--r-- | devel/bin86/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/bin86/Makefile b/devel/bin86/Makefile index bbba2ca4146b..6db2ce86a3cd 100644 --- a/devel/bin86/Makefile +++ b/devel/bin86/Makefile @@ -19,18 +19,18 @@ ONLY_FOR_ARCHS= i386 PLIST= ${WRKDIR}/pkg-plist post-extract: - find ${WRKSRC} -type f -print0 | xargs -0 ${CHMOD} 644 + ${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 pre-install: ${RM} -f ${PLIST} cd ${WRKSRC} && \ - find -s ${WRKSRC} -perm 755 -type f -exec ${BASENAME} \{\} \; \ + ${FIND} -s ${WRKSRC} -perm 755 -type f -exec ${BASENAME} \{\} \; \ | ${SED} -e 's:^:bin/:' >> ${PLIST} .if !defined(NOPORTDOCS) .for i in ${DOCS} - ${ECHO} ${DOCDIR}/${i} >> ${PLIST} + ${ECHO_CMD} ${DOCDIR}/${i} >> ${PLIST} .endfor - ${ECHO} "@dirrm " ${DOCDIR} >> ${PLIST} + ${ECHO_CMD} "@dirrm " ${DOCDIR} >> ${PLIST} .endif do-install: |