fixed conditional that caused install to see a DOS partition when none exists.

This commit is contained in:
Andrew Moore 1993-11-08 03:58:31 +00:00
parent c4b4b635be
commit a59a0c2552
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=727

View File

@ -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] "