From owner-svn-src-all@freebsd.org Mon Nov 16 23:27:46 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A1D8A304F9; Mon, 16 Nov 2015 23:27:46 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE8C312C9; Mon, 16 Nov 2015 23:27:45 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAGNRiKj011380; Mon, 16 Nov 2015 23:27:44 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAGNRiJ8011379; Mon, 16 Nov 2015 23:27:44 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201511162327.tAGNRiJ8011379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 16 Nov 2015 23:27:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290960 - head/tools X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2015 23:27:46 -0000 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