Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Nov 2015 23:27:44 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290960 - head/tools
Message-ID:  <201511162327.tAGNRiJ8011379@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511162327.tAGNRiJ8011379>