From 038fe1e3efae50220eb853bb88bccb2572a86de1 Mon Sep 17 00:00:00 2001 From: Glen Barber Date: Sat, 12 Sep 2020 00:06:45 +0000 Subject: [PATCH] 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) --- sys/conf/newvers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh index ac07bb077e1..683a979f943 100644 --- a/sys/conf/newvers.sh +++ b/sys/conf/newvers.sh @@ -54,7 +54,7 @@ TYPE="FreeBSD" REVISION="13.0" -BRANCH=${BRANCH_OVERRIDE:-CURRENT} +BRANCH="${BRANCH_OVERRIDE:-CURRENT}" RELEASE="${REVISION}-${BRANCH}" VERSION="${TYPE} ${RELEASE}"