wren: fix 32-bit builds

This commit is contained in:
Butta 2020-08-09 23:36:54 +05:30
parent 1a3d0660c8
commit aa87d46714

View File

@ -16,7 +16,12 @@ termux_step_make() {
fi fi
cd projects/make cd projects/make
make -j $TERMUX_MAKE_PROCESSES $QUIET_BUILD if [ "$TERMUX_ARCH" = i686 ] || [ "$TERMUX_ARCH" = arm ]; then
RELEASE=release_32bit
else
RELEASE=release_64bit
fi
make -j $TERMUX_MAKE_PROCESSES $QUIET_BUILD config=${RELEASE}
} }
termux_step_make_install() { termux_step_make_install() {