diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-05-03 20:20:39 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-05-03 20:20:39 +0000 |
commit | 5d41d82673a8af279642aed26538fdc3aff9db71 (patch) | |
tree | 496e12770ac6c64b72d83394823f81402cba4982 /distrib/miniroot | |
parent | 068967e49d34f75ebd3e56b19eaf19a5769ef8e0 (diff) |
Oops. Untested over-optimization slipped in, breaking installs.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index ccd9eacd8bd..2ff1cafba1f 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sh,v 1.180 2009/05/03 15:03:05 krw Exp $ +# $OpenBSD: install.sh,v 1.181 2009/05/03 20:20:38 krw Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -72,7 +72,7 @@ if [[ ! -f /etc/fstab ]]; then _DKDEVS=$DKDEVS while :; do - _DKDEVS=$(rmel $DISK $_DKDEVS) + _DKDEVS=$(rmel "$DISK" $_DKDEVS) # Always do ROOTDISK first, and repeat until it is configured. if isin $ROOTDISK $_DKDEVS; then |