From 2ea97e7607863924c1a77ec3f227cca0d17160b7 Mon Sep 17 00:00:00 2001 From: Ivan Max Date: Mon, 11 Sep 2023 18:14:38 +0300 Subject: [PATCH] fix(termux_step_get_dependencies.sh): compiling or installing dependencies did not work --- scripts/build/termux_step_get_dependencies.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/build/termux_step_get_dependencies.sh b/scripts/build/termux_step_get_dependencies.sh index 5134c06136..91589634e6 100644 --- a/scripts/build/termux_step_get_dependencies.sh +++ b/scripts/build/termux_step_get_dependencies.sh @@ -122,5 +122,9 @@ termux_run_build-package() { set_library="glibc" fi fi - TERMUX_BUILD_IGNORE_LOCK=true ./build-package.sh -s $(test "${TERMUX_FORCE_BUILD_DEPENDENCIES}" = "true" && echo "-F" || true) $(test "${TERMUX_WITHOUT_DEPVERSION_BINDING}" = "true" && echo "-w") --format $TERMUX_PACKAGE_FORMAT --library $set_library "${PKG_DIR}" + TERMUX_BUILD_IGNORE_LOCK=true ./build-package.sh \ + $(test "${TERMUX_INSTALL_DEPS}" = "true" && echo "-I" || true) \ + $(test "${TERMUX_FORCE_BUILD_DEPENDENCIES}" = "true" && echo "-F" || true) \ + $(test "${TERMUX_WITHOUT_DEPVERSION_BINDING}" = "true" && echo "-w") \ + --format $TERMUX_PACKAGE_FORMAT --library $set_library "${PKG_DIR}" }