* util/grub-install.in: Fix the bootloader ID option to be

consistently --bootloader-id, not --bootloader_id.
Reported by: KESHAV P.R.
This commit is contained in:
Colin Watson 2010-09-21 12:10:36 +01:00
parent d309a16e26
commit 5c5277839a
2 changed files with 8 additions and 2 deletions

View File

@ -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

View 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;;