Use wolfSSL 5.1.1 for tests

Add --tags when fetching commits so we get tags that are not in any
branches, which is currently the case with this tag.
This commit is contained in:
Tobias Brunner
2022-01-04 15:47:16 +01:00
parent a20daaa336
commit cd0c9919d9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
PKG = wolfssl
SRC = https://github.com/wolfSSL/$(PKG).git
REV = v5.0.0-stable
REV = v5.1.1-stable
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
@@ -40,7 +40,7 @@ all: install
@touch $@
.$(PKG)-checkout-$(REV): .$(PKG)-cloned
cd $(PKG) && git fetch && git checkout $(REV)
cd $(PKG) && git fetch --tags && git checkout $(REV)
@rm -f .$(PKG)-checkout-* && touch $@
.$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)