Module Name: src
Committed By: wiz
Date: Fri Dec 29 09:17:37 UTC 2023
Modified Files:
src/share/mk: sys.mk
Log Message:
Update ARFLAGS for new binutils.
In binutils 2.34, 'l' was a no-op.
In binutils 2.39, it is used to specify library dependencies.
Remove 'l' from ARFLAGS.
>From Takahiro Kambe in PR 57565.
To generate a diff of this commit:
cvs rdiff -u -r1.148 -r1.149 src/share/mk/sys.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/sys.mk
diff -u src/share/mk/sys.mk:1.148 src/share/mk/sys.mk:1.149
--- src/share/mk/sys.mk:1.148 Tue Dec 14 16:22:07 2021
+++ src/share/mk/sys.mk Fri Dec 29 09:17:37 2023
@@ -1,4 +1,4 @@
-# $NetBSD: sys.mk,v 1.148 2021/12/14 16:22:07 christos Exp $
+# $NetBSD: sys.mk,v 1.149 2023/12/29 09:17:37 wiz Exp $
# @(#)sys.mk 8.2 (Berkeley) 3/21/94
#
# This file contains the basic rules for make(1) and is read first
@@ -12,7 +12,7 @@ unix?= We run NetBSD.
.LIBS: .a
AR?= ar
-ARFLAGS?= rl
+ARFLAGS?= r
RANLIB?= ranlib
MV?= mv -f