Add --tags when fetching commits so we get tags that are not in any
branches, which is currently the case with this tag.
build_wolfssl()
{
- WOLFSSL_REV=v5.0.0-stable
+ WOLFSSL_REV=v5.1.1-stable
WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl
if test -d "$WOLFSSL_DIR"; then
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)
@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)