The branch stable/12 has been updated by kevans:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=6094cc1bbeea09e218e3bf70e31382ba7bbaa5a0

commit 6094cc1bbeea09e218e3bf70e31382ba7bbaa5a0
Author:     Alex Richardson <arichard...@freebsd.org>
AuthorDate: 2020-08-06 20:46:18 +0000
Commit:     Kyle Evans <kev...@freebsd.org>
CommitDate: 2021-10-08 08:12:07 +0000

    stand: use portable ln -n instead of ln -h
    
    This fixes the build on Linux
    
    Differential Revision: https://reviews.freebsd.org/D24783
    
    (cherry picked from commit d8e1e85c42f989df0343e2130de542d553a691c9)
---
 stand/defs.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/defs.mk b/stand/defs.mk
index 431b629939d8..f39710d800b5 100644
--- a/stand/defs.mk
+++ b/stand/defs.mk
@@ -238,6 +238,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__

Reply via email to