summaryrefslogtreecommitdiff
path: root/www/mozilla
diff options
context:
space:
mode:
authorwiz <wiz>2002-10-22 11:38:42 +0000
committerwiz <wiz>2002-10-22 11:38:42 +0000
commit7a0639e43562e4c77e749ed4ffd30223534b5223 (patch)
treea2234724fc4377e28afd0702722ac7b8af8259d6 /www/mozilla
parentfeec50d11597ad8b4e2706e49adb4771f814395f (diff)
downloadpkgsrc-7a0639e43562e4c77e749ed4ffd30223534b5223.tar.gz
Consistently use ${SED} instead of sed. From PR 18749 by Greg A. Woods.
Diffstat (limited to 'www/mozilla')
-rwxr-xr-xwww/mozilla/files/moz-install12
1 files changed, 6 insertions, 6 deletions
diff --git a/www/mozilla/files/moz-install b/www/mozilla/files/moz-install
index 0d15cfc4cbf..86af4cde40e 100755
--- a/www/mozilla/files/moz-install
+++ b/www/mozilla/files/moz-install
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: moz-install,v 1.3 2002/10/19 15:00:02 taya Exp $
+# $NetBSD: moz-install,v 1.4 2002/10/22 11:38:42 wiz Exp $
${SED} -e "s,@PREFIX@,${PREFIX},g" -e "s,@MOZILLA@,${MOZILLA}," -e "s,@MOZILLA_BIN@,${MOZILLA_BIN}," ${FILESDIR}/mozilla-${OBJECT_FMT}.in > ${PREFIX}/bin/${MOZILLA}
${CHOWN} ${BINOWN} ${PREFIX}/bin/${MOZILLA}
@@ -22,31 +22,31 @@ done
# install programs
for i in `${SED} -n -e '/^@comment begin PROGRAMS$/,/^@comment end PROGRAMS$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
- src=`echo $i | sed -e "s@lib/${MOZILLA}@dist/bin@"`;
+ src=`echo $i | ${SED} -e "s@lib/${MOZILLA}@dist/bin@"`;
${BSD_INSTALL_PROGRAM} ${WRKSRC}/${src} ${PREFIX}/$i
done
# install scripts
for i in `${SED} -n -e '/^@comment begin SCRIPTS$/,/^@comment end SCRIPTS$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
- src=`echo $i | sed -e "s@lib/${MOZILLA}@dist/bin@"`;
+ src=`echo $i | ${SED} -e "s@lib/${MOZILLA}@dist/bin@"`;
${BSD_INSTALL_SCRIPT} ${WRKSRC}/${src} ${PREFIX}/$i
done
# install DSO
for i in `${SED} -n -e '/^@comment begin DSO$/,/^@comment end DSO$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
- src=`echo $i | sed -e "s@lib/${MOZILLA}@dist/bin@"`;
+ src=`echo $i | ${SED} -e "s@lib/${MOZILLA}@dist/bin@"`;
${BSD_INSTALL_PROGRAM} ${WRKSRC}/${src} ${PREFIX}/$i
done
# install DATA
for i in `${SED} -n -e '/^@comment begin DATA$/,/^@comment end DATA$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
- src=`echo $i | sed -e "s@lib/${MOZILLA}@dist/bin@"`;
+ src=`echo $i | ${SED} -e "s@lib/${MOZILLA}@dist/bin@"`;
${BSD_INSTALL_DATA} ${WRKSRC}/${src} ${PREFIX}/$i
done
# install INCLUDE
for i in `${SED} -n -e '/^@comment begin INCLUDE$/,/^@comment end INCLUDE$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
- src=`echo $i | sed -e "s@include/${MOZILLA}@dist/include@"`;
+ src=`echo $i | ${SED} -e "s@include/${MOZILLA}@dist/include@"`;
${BSD_INSTALL_DATA} ${WRKSRC}/${src} ${PREFIX}/$i
done