X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/96decc21cb1c0c252d8f49817bdd0e987fe997ee..d42f1af4a471214b05e28aa9ddc0031fe3455ac4:/packages/python/build.sh diff --git a/packages/python/build.sh b/packages/python/build.sh index 293a50d8..c597d38f 100644 --- a/packages/python/build.sh +++ b/packages/python/build.sh @@ -51,6 +51,7 @@ termux_step_pre_configure() { # if extension modules should be built (specifically, the # zlib extension module is not built without this): CPPFLAGS+=" -I$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/include" + LDFLAGS+=" -L$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/lib" } termux_step_post_configure () { @@ -76,8 +77,7 @@ termux_step_post_massage () { # Verify that desired modules have been included: for module in _ssl _bz2 zlib _curses _sqlite3 _lzma; do if [ ! -f lib/python${_MAJOR_VERSION}/lib-dynload/${module}.*.so ]; then - echo "ERROR: Python module library $module not built" - exit 1 + termux_error_exit "Python module library $module not built" fi done