Date: Sat, 12 Sep 2020 00:06:45 +0000 (UTC) From: Glen Barber <gjb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r365646 - head/sys/conf Message-ID: <202009120006.08C06job053913@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009120006.08C06job053913>