Browse Source
build-package.sh: handle disable packages when building for all architectures
android-5
Leonid Plyushch
6 years ago
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with
1 additions and
1 deletions
-
scripts/build/termux_step_handle_arguments.sh
|
|
@ -37,7 +37,7 @@ termux_step_handle_arguments() { |
|
|
|
if [ -n "${TERMUX_ARCH+x}" ] && [ "${TERMUX_ARCH}" = 'all' ]; then |
|
|
|
for arch in 'aarch64' 'arm' 'i686' 'x86_64'; do |
|
|
|
TERMUX_BUILD_IGNORE_LOCK=true ./build-package.sh ${TERMUX_FORCE_BUILD+-f} \ |
|
|
|
-a $arch ${TERMUX_INSTALL_DEPS+-i} ${TERMUX_DEBUG+-d} \ |
|
|
|
-a $arch ${TERMUX_INSTALL_DEPS+-i} ${TERMUX_IS_DISABLED+-D} ${TERMUX_DEBUG+-d} \ |
|
|
|
${TERMUX_DEBDIR+-o $TERMUX_DEBDIR} "$1" |
|
|
|
done |
|
|
|
exit |
|
|
|