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 _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"