From: Fredrik Fornwall Date: Wed, 28 Sep 2016 23:51:21 +0000 (-0400) Subject: libtalloc: Build with --disable-python X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/commitdiff_plain/428c7139d24527bb0bd657c55b10150489fe8fed libtalloc: Build with --disable-python Without --disable-python the libtalloc build may pick up an invalid python2.7-configure from the Android toolchain. --- diff --git a/packages/libtalloc/build.sh b/packages/libtalloc/build.sh index 921c28b4..28bb29b6 100644 --- a/packages/libtalloc/build.sh +++ b/packages/libtalloc/build.sh @@ -42,7 +42,8 @@ Checking getconf large file support flags work: OK EOF ./configure --prefix=$TERMUX_PREFIX \ - --disable-rpath \ - --cross-compile \ - --cross-answers=cross-answers.txt + --disable-rpath \ + --disable-python \ + --cross-compile \ + --cross-answers=cross-answers.txt }