From: Tobias Brunner Date: Thu, 27 Feb 2025 16:20:12 +0000 (+0100) Subject: github: Call Botan configure script directly X-Git-Tag: 6.0.1rc1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c4e9f8c7b0cc3df07755f080ed5e9d850c59d47;p=thirdparty%2Fstrongswan.git github: Call Botan configure script directly This should find the required Python binary automatically (`python` might not be available if not explicitly installed). --- diff --git a/scripts/test.sh b/scripts/test.sh index 35f22ff3d7..1c751aa820 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -28,7 +28,7 @@ build_botan() git clone https://github.com/randombit/botan.git $BOTAN_DIR && cd $BOTAN_DIR && git checkout -qf $BOTAN_REV && - python ./configure.py --amalgamation $BOTAN_CONFIG && + ./configure.py --amalgamation $BOTAN_CONFIG && make -j4 libs >/dev/null && sudo make install >/dev/null && sudo ldconfig || exit $?