Revision: 2192
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2192
Author: davem
Date: 2009-05-05 18:54:36 +0000 (Tue, 05 May 2009)
Log Message:
-----------
* util/sparc64/ieee1275/grub-install.in: Fix sed arg quoting.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/util/sparc64/ieee1275/grub-install.in
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-05-05 16:36:58 UTC (rev 2191)
+++ trunk/grub2/ChangeLog 2009-05-05 18:54:36 UTC (rev 2192)
@@ -1,3 +1,7 @@
+2009-05-05 David S. Miller <[email protected]>
+
+ * util/sparc64/ieee1275/grub-install.in: Fix sed arg quoting.
+
2009-05-05 Pavel Roskin <[email protected]>
* include/grub/dl.h [GRUB_UTIL]: Provide inline implementations
Modified: trunk/grub2/util/sparc64/ieee1275/grub-install.in
===================================================================
--- trunk/grub2/util/sparc64/ieee1275/grub-install.in 2009-05-05 16:36:58 UTC
(rev 2191)
+++ trunk/grub2/util/sparc64/ieee1275/grub-install.in 2009-05-05 18:54:36 UTC
(rev 2192)
@@ -237,8 +237,8 @@
grub_drive="`$grub_probe --target=drive --device ${grub_device}`"
# Strip partition number
- install_drive="`echo ${install_drive} | sed -e s/\([^\]\),[0-9]*/\1/g`"
- grub_drive="`echo ${grub_drive} | sed -e s/\([^\]\),[0-9]*/\1/g`"
+ install_drive="`echo ${install_drive} | sed -e 's/\([^\]\),[0-9]*/\1/g'`"
+ grub_drive="`echo ${grub_drive} | sed -e 's/\([^\]\),[0-9]*/\1/g'`"
if [ "x${grub_drive}" != "x${install_drive}" ] ; then
uuid="`$grub_probe --target=fs_uuid --device ${grub_device}`"
if [ "x${uuid}" = "x" ] ; then