pkg: exclude 21.7 tags from 20.7

This commit is contained in:
Franco Fichtner 2021-02-07 13:57:15 +01:00
parent a47493a259
commit ae7bbbacee
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ CORE_PYTHON?= 37
.if exists(${GIT}) && exists(${GITVERSION})
. if ${CORE_ABI} == "21.1"
CORE_COMMIT!= ${GITVERSION} --exclude=21.7.r\*
CORE_COMMIT!= ${GITVERSION} --match=21.7\*
. elif ${CORE_ABI} == "20.7"
CORE_COMMIT!= ${GITVERSION} --exclude=21.1.r\*
CORE_COMMIT!= ${GITVERSION} --match=21.1.b
. else
CORE_COMMIT!= ${GITVERSION}
. endif