Date: Mon, 20 Jun 2022 13:20:04 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: e9f3e824461b - stable/13 - pkg-bootstrap: use latest package set on arm64 stable branches Message-ID: <202206201320.25KDK4Yp043965@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=e9f3e824461bb12ae21ae84a1d545a03bf0896f0 commit e9f3e824461bb12ae21ae84a1d545a03bf0896f0 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2022-06-09 23:53:24 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2022-06-20 13:19:52 +0000 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 29bd6ea5e1af..e40265146657 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206201320.25KDK4Yp043965>