summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authoralm <alm@FreeBSD.org>1993-11-08 03:58:31 +0000
committeralm <alm@FreeBSD.org>1993-11-08 03:58:31 +0000
commitb45acf0195b68909e9d7435bb27b360e3c365561 (patch)
tree2b3e1d164e6b312e3ec5920c530ad2ee64e040bf /etc
parentd0fbf26539b0fd9a3038bd7d8d7b5cf5f5c7c8ec (diff)
downloadFreeBSD-src-b45acf0195b68909e9d7435bb27b360e3c365561.zip
FreeBSD-src-b45acf0195b68909e9d7435bb27b360e3c365561.tar.gz
fixed conditional that caused install to see a DOS partition when none exists.
Diffstat (limited to 'etc')
-rwxr-xr-xetc/etc.i386/inst1.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install
index cd6626b..3850aeb 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] "
OpenPOWER on IntegriCloud