--- embedaddon/strongswan/testing/scripts/recipes/011_botan.mk 2020/06/03 09:46:49 1.1.1.1 +++ embedaddon/strongswan/testing/scripts/recipes/011_botan.mk 2021/03/17 00:20:15 1.1.1.2 @@ -2,7 +2,7 @@ PKG = botan SRC = https://github.com/randombit/$(PKG).git -REV = 2.13.0 +REV = 2.17.1 NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN) @@ -20,11 +20,11 @@ all: install .$(PKG)-checkout-$(REV): .$(PKG)-cloned cd $(PKG) && git fetch && git checkout $(REV) - @touch $@ + @rm -f .$(PKG)-checkout-* && touch $@ .$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV) cd $(PKG) && python ./configure.py $(CONFIG_OPTS) && make -j $(NUM_CPUS) - @touch $@ + @rm -f .$(PKG)-built-* && touch $@ install: .$(PKG)-built-$(REV) cd $(PKG) && make install && ldconfig