]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-install.in: Fix the bootloader ID option to be
authorColin Watson <cjwatson@ubuntu.com>
Tue, 21 Sep 2010 11:10:36 +0000 (12:10 +0100)
committerColin Watson <cjwatson@ubuntu.com>
Tue, 21 Sep 2010 11:10:36 +0000 (12:10 +0100)
consistently --bootloader-id, not --bootloader_id.
Reported by: KESHAV P.R.

ChangeLog
util/grub-install.in

index c8a99bbfc943c3e5e49cb628158f6a894722c057..8b2f5556c63316b53b7f23150a7f27db0346d46f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-09-21  Colin Watson  <cjwatson@ubuntu.com>
+
+       * util/grub-install.in: Fix the bootloader ID option to be
+       consistently --bootloader-id, not --bootloader_id.
+       Reported by: KESHAV P.R.
+
 2010-09-21  Colin Watson  <cjwatson@ubuntu.com>
 
        * grub-core/commands/hashsum.c (GRUB_MOD_INIT): Make "Compute or
index 86c6aa13d1d7ee9de37331e40e5bb0314f53c181..cace825935ac29acd21823242f26b6e33bb65db4 100644 (file)
@@ -191,8 +191,8 @@ do
 
     --bootloader-id)
        bootloader_id=`argument $option "$@"`; shift;;
-    --bootloader_id=*)
-       bootloader_id=`echo "$option" | sed 's/--bootloader_id=//'` ;;
+    --bootloader-id=*)
+       bootloader_id=`echo "$option" | sed 's/--bootloader-id=//'` ;;
 
     --grub-mkimage)
        grub_mkimage=`argument $option "$@"`; shift;;