diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-16 23:27:44 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-16 23:27:44 +0000 |
commit | 7359fe7af4a5704f53d6cd3a9c26fc0e5eba47c4 (patch) | |
tree | 2b5f3a51b93c3b8ee4baaf5145bc0ad3cb02ed6b /tools/install.sh | |
parent | e06f502c9e76b300c1844c1c6e0af103751f6c12 (diff) |
Use -n to ln(1) which is compatible with GNU ln(1).
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=290960
Diffstat (limited to 'tools/install.sh')
-rw-r--r-- | tools/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh index c28bd89ef50e..e39f6ce8faec 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -63,7 +63,7 @@ fi # the remaining arguments are assumed to be files/dirs only. if [ -n "${linkmode}" ]; then if [ "${linkmode}" = "symbolic" ]; then - ln -fsh "$@" + ln -fsn "$@" else ln -f "$@" fi |