pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/bootstrap-mk-files



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Sun Jun  1 19:07:23 UTC 2025

Modified Files:
        pkgsrc/pkgtools/bootstrap-mk-files: Makefile
        pkgsrc/pkgtools/bootstrap-mk-files/files/mods: NetBSD.sys.mk

Log Message:
bootstrap-mk-files: Fix PR pkg/59444

pkgsrc changes:
---------------
  * Remove 'l' option from ARFLAGS for NetBSD. This is consistent with base
    system. According to https://gnats.netbsd.org/57565, this change shouldn't
    have effect since 'l' was not used before. Now, it can break some packages.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 pkgsrc/pkgtools/bootstrap-mk-files/Makefile
cvs rdiff -u -r1.2 -r1.3 \
    pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/bootstrap-mk-files/Makefile
diff -u pkgsrc/pkgtools/bootstrap-mk-files/Makefile:1.61 pkgsrc/pkgtools/bootstrap-mk-files/Makefile:1.62
--- pkgsrc/pkgtools/bootstrap-mk-files/Makefile:1.61    Sat Apr 19 08:07:27 2025
+++ pkgsrc/pkgtools/bootstrap-mk-files/Makefile Sun Jun  1 19:07:23 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.61 2025/04/19 08:07:27 wiz Exp $
+# $NetBSD: Makefile,v 1.62 2025/06/01 19:07:23 triaxx Exp $
 
-PKGNAME=       bootstrap-mk-files-20240422
+PKGNAME=       bootstrap-mk-files-20250601
 CATEGORIES=    pkgtools
 
 CONFLICTS+=    mk-files-[0-9]*

Index: pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk
diff -u pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk:1.2 pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk:1.3
--- pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk:1.2     Thu Sep  8 14:28:12 2016
+++ pkgsrc/pkgtools/bootstrap-mk-files/files/mods/NetBSD.sys.mk Sun Jun  1 19:07:23 2025
@@ -1,4 +1,4 @@
-#      $NetBSD: NetBSD.sys.mk,v 1.2 2016/09/08 14:28:12 joerg Exp $
+#      $NetBSD: NetBSD.sys.mk,v 1.3 2025/06/01 19:07:23 triaxx Exp $
 #      @(#)sys.mk      8.2 (Berkeley) 3/21/94
 
 unix?=         We run NetBSD.
@@ -9,7 +9,7 @@ unix?=          We run NetBSD.
 .LIBS:         .a
 
 AR?=           ar
-ARFLAGS?=      rl
+ARFLAGS?=      r
 RANLIB?=       ranlib
 
 AS?=           as



Home | Main Index | Thread Index | Old Index