svn commit: r290960 - head/tools

Bryan Drewery bdrewery at FreeBSD.org
Mon Nov 16 23:27:46 UTC 2015


Author: bdrewery
Date: Mon Nov 16 23:27:44 2015
New Revision: 290960
URL: https://svnweb.freebsd.org/changeset/base/290960

Log:
  Use -n to ln(1) which is compatible with GNU ln(1).
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/tools/install.sh

Modified: head/tools/install.sh
==============================================================================
--- head/tools/install.sh	Mon Nov 16 23:19:53 2015	(r290959)
+++ head/tools/install.sh	Mon Nov 16 23:27:44 2015	(r290960)
@@ -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


More information about the svn-src-head mailing list