Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Aug 2020 20:46:18 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r363993 - head/stand
Message-ID:  <202008062046.076KkI8i013956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arichardson
Date: Thu Aug  6 20:46:18 2020
New Revision: 363993
URL: https://svnweb.freebsd.org/changeset/base/363993

Log:
  stand: use portable ln -n instead of ln -h
  
  This fixes the build on Linux
  
  Differential Revision: https://reviews.freebsd.org/D24783

Modified:
  head/stand/defs.mk

Modified: head/stand/defs.mk
==============================================================================
--- head/stand/defs.mk	Thu Aug  6 20:46:13 2020	(r363992)
+++ head/stand/defs.mk	Thu Aug  6 20:46:18 2020	(r363993)
@@ -237,6 +237,6 @@ ${_ILINKS}: .NOMETA
 	esac ; \
 	path=`(cd $$path && /bin/pwd)` ; \
 	${ECHO} ${.TARGET} "->" $$path ; \
-	ln -fhs $$path ${.TARGET}
+	ln -fns $$path ${.TARGET}
 .endif # !NO_OBJ
 .endif # __BOOT_DEFS_MK__



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