2009-12-08 Colin Watson <cjwatson@ubuntu.com>
* util/grub.d/00_header.in: Quote the value assigned to `default', in case it contains spaces.
This commit is contained in:
parent
b824145a8f
commit
36cd6dd151
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-12-08 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* util/grub.d/00_header.in: Quote the value assigned to `default',
|
||||||
|
in case it contains spaces.
|
||||||
|
|
||||||
2009-12-08 Colin Watson <cjwatson@ubuntu.com>
|
2009-12-08 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* util/grub.d/30_os-prober.in: Fix merge error that moved a
|
* util/grub.d/30_os-prober.in: Fix merge error that moved a
|
||||||
|
|
|
@ -40,7 +40,7 @@ if [ "x${GRUB_GFXMODE}" = "x" ] ; then GRUB_GFXMODE=640x480 ; fi
|
||||||
|
|
||||||
cat << EOF
|
cat << EOF
|
||||||
load_env
|
load_env
|
||||||
set default=${GRUB_DEFAULT}
|
set default="${GRUB_DEFAULT}"
|
||||||
if [ \${prev_saved_entry} ]; then
|
if [ \${prev_saved_entry} ]; then
|
||||||
saved_entry=\${prev_saved_entry}
|
saved_entry=\${prev_saved_entry}
|
||||||
save_env saved_entry
|
save_env saved_entry
|
||||||
|
|
Loading…
Reference in a new issue