]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
github: Call Botan configure script directly
authorTobias Brunner <tobias@strongswan.org>
Thu, 27 Feb 2025 16:20:12 +0000 (17:20 +0100)
committerTobias Brunner <tobias@strongswan.org>
Fri, 28 Feb 2025 11:55:12 +0000 (12:55 +0100)
This should find the required Python binary automatically (`python` might
not be available if not explicitly installed).

scripts/test.sh

index 35f22ff3d743989d3000df7d66047fbc1ef87928..1c751aa820e9d6d9a27f5068ec3f66ae48c4b6c6 100755 (executable)
@@ -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 $?