[2450] 2009-07-28 Felix Zielcke <[email protected]>

Felix Zielcke <[email protected]> Tue, 28 Jul 2009 18:32:28 +0000
Newsgroups gmane.comp.boot-loaders.grub.cvs
Message-ID <[email protected]>
Revision: 2450
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2450
Author:   fzielcke
Date:     2009-07-28 18:32:28 +0000 (Tue, 28 Jul 2009)
Log Message:
-----------
2009-07-28  Felix Zielcke  <[email protected]>

	* util/i386/pc/grub-install: Fix parsing of --disk-module
	option.

Modified Paths:
--------------
    trunk/grub2/ChangeLog
    trunk/grub2/util/i386/pc/grub-install.in

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog	2009-07-28 15:58:40 UTC (rev 2449)
+++ trunk/grub2/ChangeLog	2009-07-28 18:32:28 UTC (rev 2450)
@@ -1,5 +1,10 @@
 2009-07-28  Felix Zielcke  <[email protected]>
 
+	* util/i386/pc/grub-install: Fix parsing of --disk-module
+	option.
+
+2009-07-28  Felix Zielcke  <[email protected]>
+
 	* util/i386/pc/grub-setup.c (setup): Fix 2 incorrect checks
 	when embedding.
 

Modified: trunk/grub2/util/i386/pc/grub-install.in
===================================================================
--- trunk/grub2/util/i386/pc/grub-install.in	2009-07-28 15:58:40 UTC (rev 2449)
+++ trunk/grub2/util/i386/pc/grub-install.in	2009-07-28 18:32:28 UTC (rev 2450)
@@ -119,7 +119,7 @@
 	recheck=yes ;;
     --disk-module=*)
 	if [ "${target_cpu}-${platform}" = "i386-pc" ] ; then
-           disk_module=`echo "$option" | sed 's/--disk-module//'`
+           disk_module=`echo "$option" | sed 's/--disk-module=//'`
         fi ;;
     # This is an undocumented feature...
     --debug)