From e9f3e824461bb12ae21ae84a1d545a03bf0896f0 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 9 Jun 2022 19:53:24 -0400 Subject: [PATCH] pkg-bootstrap: use latest package set on arm64 stable branches As with i386 and amd64, "latest" packages are available on stable branches for arm64/aarch64. Reviewed by: manu MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D35445 (cherry picked from commit f92e0d6acda3abd16c6d411bf90ef26c4e3c40c4) --- usr.sbin/pkg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/pkg/Makefile b/usr.sbin/pkg/Makefile index 29bd6ea5e1a..e4026514665 100644 --- a/usr.sbin/pkg/Makefile +++ b/usr.sbin/pkg/Makefile @@ -10,7 +10,7 @@ PKGCONFBRANCH?= latest . if ${BRANCH:MBETA*} || ${BRANCH:MRC*} || ${BRANCH:MRELEASE*} PKGCONFBRANCH?= quarterly . else -. if ${MACHINE} != "amd64" && ${MACHINE} != "i386" +. if ${MACHINE} != "amd64" && ${MACHINE} != "i386" && ${MACHINE} != "arm64" PKGCONFBRANCH?= quarterly . else PKGCONFBRANCH?= latest -- 2.45.0