diff options
author | ru <ru@FreeBSD.org> | 2001-05-28 16:53:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-28 16:53:01 +0000 |
commit | 90fde797f7e576bdbb9fa619209020eec2ab2090 (patch) | |
tree | e67991cd52d856cfc34e505c87e64c0d7d35a35f /tools | |
parent | 03c37077e512fc0bdf55cdc3bf7c32fd18080c27 (diff) | |
download | FreeBSD-src-90fde797f7e576bdbb9fa619209020eec2ab2090.zip FreeBSD-src-90fde797f7e576bdbb9fa619209020eec2ab2090.tar.gz |
Added support for all new install(1) options.
Removed -c from the actual call as -p implies "copy".
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/install.sh b/tools/install.sh index f89d73a..46c8c4a 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -32,11 +32,11 @@ # XXX - not all options are recognised. while [ ! -z $1 ]; do case $1 in - -C | -c | -D | -M | -p | -s) shift;; - -f | -g | -m | -o) shift; shift;; + -b | -C | -c | -M | -p | -S | -s) shift;; + -B | -f | -g | -m | -o) shift; shift;; *) break; esac done # the remaining arguments are assumed to be files/dirs only. -exec install -c -p $* +exec install -p $* |