]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
add backslashes into continuous lines in grub-install.
authorokuji <okuji@localhost>
Sat, 21 Oct 2000 20:46:06 +0000 (20:46 +0000)
committerokuji <okuji@localhost>
Sat, 21 Oct 2000 20:46:06 +0000 (20:46 +0000)
ChangeLog
THANKS
util/grub-install.in

index c7b1618cecd6b44eec6bb259171260301151fecf..ecabf9cd7f9e5599149c0784f2fa43cd73470cd1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-22  OKUJI Yoshinori  <okuji@gnu.org>
+
+       From Matthias Granberry <matthias@slurpee.org>:
+       * util/grub-install.in (convert): Added backslashes into
+       continuous lines.
+       
 2000-10-21  OKUJI Yoshinori  <okuji@gnu.org>
 
        * stage2/md5.c (check_md5_password): Removed.
diff --git a/THANKS b/THANKS
index 5b0a58467750da1a93a5584db0f5add7baad80e1..d5c1dfa77769330e25fa81a5a2c6c50548e3a2db 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -37,6 +37,7 @@ Kunihiro Ishiguro <kunihiro@zebra.org>
 M. Meiarashi <mes@st.rim.or.jp>
 Mark Lundeberg <aa026@pgfn.bc.ca>
 Matt Yourst <yourst@mit.edu>
+Matthias Granberry <matthias@slurpee.org>
 Matthias Kretschmer <m.kretschmer@bsdger.org>
 Michael Hohmuth <hohmuth@innocent.com>
 Mike Meyer <mwm@mired.org>
index 5bc7bb5ebb36d38496fbf4dd8cd52d0e3091c10c..99a40b006e13155cc5763dc68ca10120592e0aed 100644 (file)
@@ -76,9 +76,9 @@ convert () {
     # Break the device name into the disk part and the partition part.
     case "$host_os" in
     linux*)
-       tmp_disk=`echo "$1" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%'
+       tmp_disk=`echo "$1" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' \
                                  -e 's%/part[0-9]*$%/disc%'`
-       tmp_part=`echo "$1" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%'
+       tmp_part=`echo "$1" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%' \
                                  -e 's%.*/\(disc\|part\([0-9]*\)\)$%\2%'`
        ;;
     gnu*)