diff options
author | brooks <brooks@FreeBSD.org> | 2013-01-21 22:32:00 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2013-01-21 22:32:00 +0000 |
commit | af380cc2bf79f05f3bc2dc404bb15bd165f77444 (patch) | |
tree | f77b42d41f052002d4ac4f215ad9efe2b276ecbc /tools | |
parent | 5ab6899eb1159c7769dcc378b262f65de85d3d07 (diff) | |
download | FreeBSD-src-af380cc2bf79f05f3bc2dc404bb15bd165f77444.zip FreeBSD-src-af380cc2bf79f05f3bc2dc404bb15bd165f77444.tar.gz |
Implement the -l option using ln(1) to facilitate boostrapping.
Ignore the new options -D, -h, -T, and -U. Adjust -M support to ignore
an argument.
Sponsored by: DARPA, AFRL
Reviewed by: ian, ray, rpaulo
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install.sh | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/tools/install.sh b/tools/install.sh index 489424f..db3ee35 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -30,12 +30,22 @@ # parse install's options and ignore them completely. dirmode="" +linkmode="" while [ $# -gt 0 ]; do case $1 in -d) dirmode="YES"; shift;; - -[bCcMpSsv]) shift;; - -[Bfgmo]) shift; shift;; - -[Bfgmo]*) shift;; + -[bCcpSsv]) shift;; + -[BDfghMmNoTU]) shift; shift;; + -[BDfghMmNoTU]*) shift;; + -l) + shift + case $1 in + *[sm]*) linkmode="symbolic";; # XXX: 'm' should prefer hard + *h*) linkmode="hard";; + *) echo "invalid link mode"; exit 1;; + esac + shift + ;; *) break; esac done @@ -51,7 +61,13 @@ if [ -z "$dirmode" ] && [ "$#" -lt 2 ]; then fi # the remaining arguments are assumed to be files/dirs only. -if [ -z "$dirmode" ]; then +if [ -n "${linkmode}" ]; then + if [ "${linkmode}" == "symbolic" ]; then + ln -fsh "$@" + else + ln -f "$@" + fi +elif [ -z "$dirmode" ]; then exec install -p "$@" else exec install -d "$@" |