From a59a0c2552efc337d98823f82709e9ce55caa3f5 Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Mon, 8 Nov 1993 03:58:31 +0000 Subject: [PATCH] fixed conditional that caused install to see a DOS partition when none exists. --- etc/etc.i386/inst1.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install index cd6626bbb07..3850aeb1df7 100755 --- a/etc/etc.i386/inst1.install +++ b/etc/etc.i386/inst1.install @@ -754,8 +754,8 @@ while [ $part_used -lt $partition ]; do part_used=partition fi done -if [ "$have_dos_part" != "$opsys_part" -a "$RUN_FDISK" != "overwrite" -a \ - ! "$hname" ]; then +if [ "$have_dos_part" -a "$have_dos_part" != "$opsys_part" -a \ + "$RUN_FDISK" != "overwrite" -a ! "$hname" ]; then echo echo "There appears to be a MS-DOS filesystem on the hard disk." echo -n "Make this be accessible from ${OPSYSTEM}? [y] "