* util/grub-install.in: Remove excessive quoting that broke

installations to RAID devices.
This commit is contained in:
Colin Watson 2010-11-22 12:20:57 +00:00
parent 7f8b0fd7f0
commit cf8ffc3825
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-11-22 Colin Watson <cjwatson@ubuntu.com>
* util/grub-install.in: Remove excessive quoting that broke
installations to RAID devices.
2010-11-19 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/i386/linux.c (grub_cmd_linux): Pass correctly the

View file

@ -473,7 +473,7 @@ fi
# this command is allowed to fail (--target=fs already grants us that the
# filesystem will be accessible).
partmap_module=
for x in "`"$grub_probe" --device-map="${device_map}" --target=partmap --device "${grub_device}" 2> /dev/null`"; do
for x in `"$grub_probe" --device-map="${device_map}" --target=partmap --device "${grub_device}" 2> /dev/null`; do
case "$x" in
netbsd | openbsd)
partmap_module="$partmap_module part_bsd";;