]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-mkconfig_lib.in: Add missing quotes.
authorAlexander Kurtz <kurtz.alex@googlemail.com>
Fri, 24 Jun 2011 10:38:24 +0000 (12:38 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 24 Jun 2011 10:38:24 +0000 (12:38 +0200)
ChangeLog
util/grub-mkconfig_lib.in

index 1b63af87136c951d7eb1ad5afc4ae1f735cd3041..d5c97b6e0218ae556dd57fb2d15caad9dda935a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-24  Alexander Kurtz <kurtz.alex@googlemail.com>
+
+       * util/grub-mkconfig_lib.in: Add missing quotes.
+
 2011-06-24  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/kern/emu/getroot.c (grub_guess_root_device): Revert to
index 2c5fd8c6f51f460a9a54b4453040386c14f9b35f..759bcba1bbb7e3bcc65775a7a306161e14178fac 100644 (file)
@@ -63,7 +63,7 @@ is_path_readable_by_grub ()
 
   # ... or if we can't figure out the abstraction module, for example if
   # memberlist fails on an LVM volume group.
-  if ${grub_probe} -t abstraction $path > /dev/null 2>&1 ; then : ; else
+  if "${grub_probe}" -t abstraction "$path" > /dev/null 2>&1 ; then : ; else
     return 1
   fi