svn commit: r365646 - head/sys/conf

Glen Barber gjb at FreeBSD.org
Sat Sep 12 00:06:46 UTC 2020


Author: gjb
Date: Sat Sep 12 00:06:45 2020
New Revision: 365646
URL: https://svnweb.freebsd.org/changeset/base/365646

Log:
  Enclose BRANCH_OVERRIDE in quotes in order to fix an issue with
  freebsd-update(8) builds, where BRANCH is suffixed with -p0 for
  builds.
  
  Noticed by:	gordon
  With help from:	cperciva
  MFC after:	3 days
  MFC note:	before 12.2-BETA2
  Sponsored by:	Rubicon Communications, LLC (netgate.com)

Modified:
  head/sys/conf/newvers.sh

Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh	Fri Sep 11 23:37:49 2020	(r365645)
+++ head/sys/conf/newvers.sh	Sat Sep 12 00:06:45 2020	(r365646)
@@ -54,7 +54,7 @@
 
 TYPE="FreeBSD"
 REVISION="13.0"
-BRANCH=${BRANCH_OVERRIDE:-CURRENT}
+BRANCH="${BRANCH_OVERRIDE:-CURRENT}"
 RELEASE="${REVISION}-${BRANCH}"
 VERSION="${TYPE} ${RELEASE}"
 


More information about the svn-src-head mailing list