fix(scripts): `TERMUX_PYTHON_CROSSENV_PREFIX` should be architecture-specific

This commit is contained in:
Uchiha Kakashi 2023-03-24 16:11:45 +08:00 committed by xtkoba
parent b700036bf7
commit 790284e0b6
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ termux_step_setup_variables() {
TERMUX_PKG_PYTHON_TARGET_DEPS="" # python modules to be installed via pip3
TERMUX_PKG_PYTHON_BUILD_DEPS="" # python modules to be installed via build-pip
TERMUX_PKG_PYTHON_COMMON_DEPS="" # python modules to be installed via pip3 or build-pip
TERMUX_PYTHON_CROSSENV_PREFIX=$TERMUX_TOPDIR/python-crossenv-prefix # python modules dependency location (only used in non-devices)
TERMUX_PYTHON_CROSSENV_PREFIX="$TERMUX_TOPDIR/python-crossenv-prefix-$TERMUX_ARCH" # python modules dependency location (only used in non-devices)
TERMUX_PYTHON_HOME=$TERMUX_PREFIX/lib/python${TERMUX_PYTHON_VERSION} # location of python libraries
unset CFLAGS CPPFLAGS LDFLAGS CXXFLAGS