aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Moore <alm@FreeBSD.org>1993-11-08 03:58:31 +0000
committerAndrew Moore <alm@FreeBSD.org>1993-11-08 03:58:31 +0000
commita59a0c2552efc337d98823f82709e9ce55caa3f5 (patch)
tree2b3e1d164e6b312e3ec5920c530ad2ee64e040bf
parentc4b4b635be7038515d10dc59515d5c099e28f728 (diff)
downloadsrc-a59a0c2552efc337d98823f82709e9ce55caa3f5.tar.gz
src-a59a0c2552efc337d98823f82709e9ce55caa3f5.zip
fixed conditional that caused install to see a DOS partition when none exists.
Notes
Notes: svn path=/head/; revision=727
-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 cd6626bbb07e..3850aeb1df74 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] "