diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-05-04 03:03:15 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-05-04 03:03:15 +0000 |
commit | 8a6e30998478ccc6d943a422b85e3c385e4985ae (patch) | |
tree | 4fbb4def0d57536df94440415fcb1bef492eb4b3 | |
parent | c9ec1c2d010ab7247504e396461cf89aea680a19 (diff) |
Fix thinko in kernel install handling
-rw-r--r-- | distrib/miniroot/install.sub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 38b80a5831a..3b662775744 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.10 1997/05/03 23:06:02 tholo Exp $ +# $OpenBSD: install.sub,v 1.11 1997/05/04 03:03:14 tholo Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -40,7 +40,7 @@ # OpenBSD installation/upgrade script - common subroutines. ROOTDISK="" # filled in below -VERSION=21 +VERSION= export VERSION ALLSETS="etc base misc comp text man game" # default install sets @@ -622,7 +622,7 @@ __install_ftp_2 fi for _ftp_file in $resp; do - if [ "X${resp}" = "Xkernel" ]; then + if [ "X${_ftp_file}" = "Xkernel" ]; then echo -n "get " >> /tmp/ftp-script.sh echo "bsd" >> /tmp/ftp-script.sh else |