diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-27 18:54:38 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-27 18:54:38 +0000 |
commit | d4385e1eff7d12c97eb13726af348ff2255e6a75 (patch) | |
tree | 779caacd01135d38749630e38f03b199ccaad7fb /scripts | |
parent | 08f3ff6f2ecd75be92ff1df1a17663d02178fb66 (diff) | |
download | anaconda-d4385e1eff7d12c97eb13726af348ff2255e6a75.tar.gz anaconda-d4385e1eff7d12c97eb13726af348ff2255e6a75.tar.xz anaconda-d4385e1eff7d12c97eb13726af348ff2255e6a75.zip |
only catch numerics and not to the end of line
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mk-images.i386 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk-images.i386 b/scripts/mk-images.i386 index dca2f66a8..f873d5841 100644 --- a/scripts/mk-images.i386 +++ b/scripts/mk-images.i386 @@ -18,7 +18,7 @@ prepareBootImage() { if [ -d $BOOTDISKDIR/$BOOTLANG ]; then # fb console and kon don't get along... if [ "$BOOTLANG" = "ja_JP" ]; then - sed -e "s/ vga=.*//g" < $MBD_BOOTTREE/syslinux.cfg > $MBD_BOOTTREE/syslinux.cf2 + sed -e "s/ vga=[0-9]*//g" < $MBD_BOOTTREE/syslinux.cfg > $MBD_BOOTTREE/syslinux.cf2 mv -f $MBD_BOOTTREE/syslinux.cf2 $MBD_BOOTTREE/syslinux.cfg fi if [ -n $BOOTDIR ]; then |