From 771cae8182e87a57241a8863aa33765b5b94a9b0 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 28 Jan 2021 10:56:38 +0100 Subject: [PATCH] pkg: move default ABI to 21.1, retain 20.7 compat for now --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f8d6f0f2f..482ac3988 100644 --- a/Makefile +++ b/Makefile @@ -28,13 +28,15 @@ all: .include "Mk/defaults.mk" -CORE_ABI?= 20.7 +CORE_ABI?= 21.1 CORE_PHP?= 73 CORE_PYTHON?= 37 .if exists(${GIT}) && exists(${GITVERSION}) . if ${CORE_ABI} == "20.7" CORE_COMMIT!= ${GITVERSION} --exclude=21.1.r\* +. elif ${CORE_ABI} == "21.1" +CORE_COMMIT!= ${GITVERSION} --exclude=21.7.r\* . else CORE_COMMIT!= ${GITVERSION} . endif