diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-06 11:00:13 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-06 11:00:13 +0000 |
| commit | 285c79350176c2c239dd53ab24a27e6fae4ba822 (patch) | |
| tree | 17d010b9efad2e065875c39ab0f2125f606a1a8d | |
| parent | 3d99503552d27c52953f5b3d031579e34619afc7 (diff) | |
Notes
| -rw-r--r-- | tools/install.sh | 7 |
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 |
