From 020f035a5d24275f7f2a0a67e9d500ccf5a2d2bd Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 9 Jan 2008 05:36:40 +0000 Subject: [PATCH] Made grub-menu-builder write (hd0,0) instead of hd0,0 svn path=/nixos/trunk/; revision=10101 --- installer/grub-menu-builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/grub-menu-builder.sh b/installer/grub-menu-builder.sh index 779dba30c194..4ad99bebb564 100644 --- a/installer/grub-menu-builder.sh +++ b/installer/grub-menu-builder.sh @@ -11,7 +11,7 @@ if test -z "$1"; then exit 1 fi -bootMount=@bootMount@ +bootMount="@bootMount@" if test -z "$bootMount"; then bootMount=/boot; fi @@ -30,7 +30,7 @@ if test -n "@grubSplashImage@"; then # !!! image in /nix/store doesn't seem to work #if test -n "@copyKernels@"; then cp -f $splashLocation /boot/background.xpm.gz - splashLocation=$bootMount/background.xpm.gz + splashLocation="$bootMount/background.xpm.gz" #fi echo "splashimage $splashLocation" >> $tmp fi