github: Call Botan configure script directly

This should find the required Python binary automatically (`python` might
not be available if not explicitly installed).
This commit is contained in:
Tobias Brunner 2025-02-27 17:20:12 +01:00
parent f740faccac
commit 8c4e9f8c7b

View File

@ -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 $?