From 7dc33353c4768c1ac3a612682b180b63dd13c657 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Mon, 18 May 2009 12:54:54 +0000 Subject: [PATCH] Synced with trunk @ 15548 svn path=/nixos/branches/modular-nixos/; revision=15643 --- 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 464fc94ce22c..8a99ca5f29df 100644 --- a/installer/grub-menu-builder.sh +++ b/installer/grub-menu-builder.sh @@ -15,7 +15,7 @@ bootMount="@bootMount@" if test -z "$bootMount"; then bootMount=/boot; fi -echo "updating the Grub menu..." +echo "updating the GRUB menu..." target=/boot/grub/menu.lst @@ -176,7 +176,7 @@ mv $tmp $target # Remove obsolete files from /boot/kernels. -for fn in $(ls /boot/kernels/*); do +for fn in /boot/kernels/*; do if ! test "${filesCopied[$fn]}" = 1; then rm -vf -- "$fn" fi