summaryrefslogtreecommitdiff
path: root/lang/mozart
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:24:09 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:24:09 +0000
commitc982f5faf1c27ba011ef14e71aadc2182660d704 (patch)
tree2b0b412c02b07adeb72e10a7417749a64cea16ec /lang/mozart
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. Use command macros where appropriate.
Notes
Notes: svn path=/head/; revision=53957
Diffstat (limited to 'lang/mozart')
-rw-r--r--lang/mozart/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/mozart/Makefile b/lang/mozart/Makefile
index b2dad341237d..c8a1bac3df09 100644
--- a/lang/mozart/Makefile
+++ b/lang/mozart/Makefile
@@ -59,16 +59,16 @@ post-install:
@${MV} ${PREFIX}/lib/oz/mozart/doc ${PREFIX}/lib/oz
@${RM} -rf ${PREFIX}/lib/oz/mozart
.endif
- @cd ${PREFIX} ; find lib/oz -type f -o -type l | sort \
+ @cd ${PREFIX} ; ${FIND} lib/oz -type f -o -type l | sort \
> ${WRKDIR}/PLIST.lib-oz
- @cd ${PREFIX} ; find lib/oz -type d | sort -r \
+ @cd ${PREFIX} ; ${FIND} lib/oz -type d | sort -r \
| ${SED} -e 's/^/@dirrm /g' \
>> ${WRKDIR}/PLIST.lib-oz
- @${ECHO} "r ${TMPPLIST}" > ${WRKDIR}/ex.script
- @${ECHO} "/Insert PLIST.lib-oz" >> ${WRKDIR}/ex.script
- @${ECHO} "d" >> ${WRKDIR}/ex.script
- @${ECHO} "r ${WRKDIR}/PLIST.lib-oz" >> ${WRKDIR}/ex.script
- @${ECHO} "x!" >> ${WRKDIR}/ex.script
+ @${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script
+ @${ECHO_CMD} "/Insert PLIST.lib-oz" >> ${WRKDIR}/ex.script
+ @${ECHO_CMD} "d" >> ${WRKDIR}/ex.script
+ @${ECHO_CMD} "r ${WRKDIR}/PLIST.lib-oz" >> ${WRKDIR}/ex.script
+ @${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script
@${CP} -p ${TMPPLIST} ${TMPPLIST}.pre-lib-oz
@cd ${WRKDIR} ; ex < ex.script
@${CAT} ${PKGMESSAGE}