summaryrefslogtreecommitdiff
path: root/lang/modula-3/Makefile
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>1999-08-28 02:17:34 +0000
committerMichael Haro <mharo@FreeBSD.org>1999-08-28 02:17:34 +0000
commit8d6f14a9b2d73e9a9cbd3f785b162547d769b53a (patch)
tree90ea645cc70e1ef2db1513c426e5aeb6eb33f840 /lang/modula-3/Makefile
parentln -> ${LN} (diff)
sed -> ${SED}
Notes
Notes: svn path=/head/; revision=21048
Diffstat (limited to '')
-rw-r--r--lang/modula-3/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/modula-3/Makefile b/lang/modula-3/Makefile
index 0780e8ceb091..6eff50eb8456 100644
--- a/lang/modula-3/Makefile
+++ b/lang/modula-3/Makefile
@@ -52,7 +52,7 @@ do-install:
@${ECHO_MSG} "Installing files in \"${PREFIX}\""
@cd ${temp_prefix}; \
umask 022; \
- sed -e "/^@/d" -e "/m3build-/d" -e "s/\.gz$$//" \
+ ${SED} -e "/^@/d" -e "/m3build-/d" -e "s/\.gz$$//" \
-e "/^share/d" ${PLIST}.real | \
cpio -dump -R ${BINOWN}.${BINGRP} ${PREFIX}
@cd ${temp_prefix}/man/man1; \
@@ -100,9 +100,9 @@ do-install:
${LN} -f m3build m3build-${major}
@${ECHO_MSG} "Fixing file permissions"
@cd ${PREFIX}; \
- sed -e "/^@/d" -e "s/\.gz$$//" ${PLIST}.real |\
+ ${SED} -e "/^@/d" -e "s/\.gz$$//" ${PLIST}.real |\
xargs ${CHOWN} ${BINOWN}.${BINGRP}; \
- sed -e "/^@/d" -e "s/\.gz$$//" ${PLIST}.real |\
+ ${SED} -e "/^@/d" -e "s/\.gz$$//" ${PLIST}.real |\
xargs ${CHMOD} go=u-w; \
find -X lib/m3 -type d | xargs ${CHOWN} ${BINOWN}.${BINGRP}; \
find -X lib/m3 -type d | xargs ${CHMOD} 755