From 8c4e9f8c7b0cc3df07755f080ed5e9d850c59d47 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 27 Feb 2025 17:20:12 +0100 Subject: [PATCH] github: Call Botan configure script directly This should find the required Python binary automatically (`python` might not be available if not explicitly installed). --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 35f22ff3d..1c751aa82 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 $?