aboutsummaryrefslogtreecommitdiff
path: root/tools/install.sh
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2015-11-16 23:27:44 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2015-11-16 23:27:44 +0000
commit7359fe7af4a5704f53d6cd3a9c26fc0e5eba47c4 (patch)
tree2b5f3a51b93c3b8ee4baaf5145bc0ad3cb02ed6b /tools/install.sh
parente06f502c9e76b300c1844c1c6e0af103751f6c12 (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.sh2
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