aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/install.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/install.sh b/tools/install.sh
index c578ddaadb96..899d7e21d48a 100644
--- a/tools/install.sh
+++ b/tools/install.sh
@@ -29,11 +29,10 @@
# $FreeBSD$
# parse install's options and ignore them completely.
-# XXX - not all options are recognised.
-while [ ! -z $1 ]; do
+while [ $# -gt 0 ]; do
case $1 in
- -b | -C | -c | -M | -p | -S | -s) shift;;
- -B | -f | -g | -m | -o) shift; shift;;
+ -[bCcMpSs]) shift;;
+ -[Bfgmo]) shift; shift;;
*) break;
esac
done