diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-09 20:11:29 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-09 20:11:29 +0000 |
commit | 3e0d32e619e3a744f146ef061b13b0db1e8e9d3a (patch) | |
tree | 83357db96cb3fedcba352dfa246654f6126f2956 /scripts | |
parent | 1f36bdd62403d41fb4b94d94d953bd7656a1cd95 (diff) | |
download | anaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.tar.gz anaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.tar.xz anaconda-3e0d32e619e3a744f146ef061b13b0db1e8e9d3a.zip |
use valid sed options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mk-images.i386 | 4 |
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. |