* 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:
parent
d309a16e26
commit
5c5277839a
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;;
|
||||
|
|
Loading…
Reference in a new issue