diff options
author | 2013-11-09 19:38:59 +0000 | |
---|---|---|
committer | 2013-11-09 19:38:59 +0000 | |
commit | 6b832c27622e63e7841e7b223d1d1b740da2a7c2 (patch) | |
tree | 8960b8a26dee209ee1ac1be7d9fe431b22abf2fe | |
parent | Replace handrolled tolower() function with ksh equivalent. (diff) | |
download | wireguard-openbsd-6b832c27622e63e7841e7b223d1d1b740da2a7c2.tar.xz wireguard-openbsd-6b832c27622e63e7841e7b223d1d1b740da2a7c2.zip |
Abort automatic installation if no sets are found in install_files().
ok krw@ halex@
-rw-r--r-- | distrib/miniroot/install.sub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index c164d280c65..68599419d55 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.689 2013/11/09 19:32:55 rpe Exp $ +# $OpenBSD: install.sub,v 1.690 2013/11/09 19:38:59 rpe Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -1145,6 +1145,7 @@ install_files() { for _n in $THESETS; do echo $_n; done | showcols | sed 's/^/ /' COLUMNS=$_col + $auto && exit 1 echo return fi |