summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-09 20:11:29 +0000
committerMatt Wilson <msw@redhat.com>2001-07-09 20:11:29 +0000
commit3e0d32e619e3a744f146ef061b13b0db1e8e9d3a (patch)
tree83357db96cb3fedcba352dfa246654f6126f2956 /scripts
parent1f36bdd62403d41fb4b94d94d953bd7656a1cd95 (diff)
downloadanaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.tar.gz
anaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.tar.xz
anaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.zip
use valid sed options
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mk-images.i3864
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mk-images.i386 b/scripts/mk-images.i386
index 4b7de2a5f..0cf39331d 100644
--- a/scripts/mk-images.i386
+++ b/scripts/mk-images.i386
@@ -27,7 +27,7 @@ prepareBootImage() {
fi
for file in $BOOTDISKDIR/$BOOTLANG/*.msg; do
filename=`basename $file`
- sed -s "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
+ sed -e "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
done
if [ $? != 0 ]; then
echo $0: Failed to copy messages from $BOOTDISKDIR/$BOOTLANG to $MBD_BOOTTREE.
@@ -38,7 +38,7 @@ prepareBootImage() {
else
for file in $BOOTDISKDIR/*.msg; do
filename=`basename $file`
- sed -s "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
+ sed -e "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
done
if [ $? != 0 ]; then
echo $0: Failed to copy messages from $BOOTDISKDIR to $MBD_BOOTTREE.