diff -Naur grub-0.91.orig/util/grub-install.in grub-0.91/util/grub-install.in --- grub-0.91.orig/util/grub-install.in Wed Jan 2 21:44:26 2002 +++ grub-0.91/util/grub-install.in Fri Feb 15 14:52:58 2002 @@ -246,17 +246,17 @@ exit 1 fi -if test -f "$pkgdatadir/stage1"; then +if test -f "$grubdir/stage1"; then : else - echo "${pkgdatadir}/stage1: Not found." 1>&2 + echo "${grubdir}/stage1: Not found." 1>&2 exit 1 fi -if test -f "$pkgdatadir/stage2"; then +if test -f "$grubdir/stage2"; then : else - echo "${pkgdatadir}/stage2: Not found." 1>&2 + echo "${grubdir}/stage2: Not found." 1>&2 exit 1 fi @@ -342,13 +342,13 @@ fi # Copy the GRUB images to the GRUB directory. -for file in ${grubdir}/stage1 ${grubdir}/stage2 ${grubdir}/*stage1_5; do - rm -f $file || exit 1 -done -for file in \ - ${pkgdatadir}/stage1 ${pkgdatadir}/stage2 ${pkgdatadir}/*stage1_5; do - cp -f $file ${grubdir} || exit 1 -done +#for file in ${grubdir}/stage1 ${grubdir}/stage2 ${grubdir}/*stage1_5; do +# rm -f $file || exit 1 +#done +#for file in \ +# ${pkgdatadir}/stage1 ${pkgdatadir}/stage2 ${pkgdatadir}/*stage1_5; do +# cp -f $file ${grubdir} || exit 1 +#done # Create a safe temporary file. test -n "$mkstemp" && log_file=`$mkstemp`