svn commit: r346792 - stable/12/usr.sbin/pkg

Colin Percival cperciva at FreeBSD.org
Sat Apr 27 19:45:35 UTC 2019


Author: cperciva
Date: Sat Apr 27 19:45:33 2019
New Revision: 346792
URL: https://svnweb.freebsd.org/changeset/base/346792

Log:
  On non-x86 systems, use "quarterly" packages.
  
  x86 architectures have "latest" package builds on stable/*, so keep using
  those (they'll get switched over to "quarterly" during releases).
  
  Direct commit to stable/12 because using "latest" packages is appropriate
  for all architectures on HEAD.
  
  Discussed with:	gjb

Modified:
  stable/12/usr.sbin/pkg/Makefile

Modified: stable/12/usr.sbin/pkg/Makefile
==============================================================================
--- stable/12/usr.sbin/pkg/Makefile	Sat Apr 27 19:32:33 2019	(r346791)
+++ stable/12/usr.sbin/pkg/Makefile	Sat Apr 27 19:45:33 2019	(r346792)
@@ -1,5 +1,8 @@
 # $FreeBSD$
 
+.if ${MACHINE} != "amd64" && ${MACHINE} != "i386"
+PKGCONFBRANCH?=	quarterly
+.endif
 PKGCONFBRANCH?=	latest
 CONFS=		FreeBSD.conf.${PKGCONFBRANCH}
 CONFSNAME=	FreeBSD.conf


More information about the svn-src-all mailing list