Browse Source

build-package.sh: fix handling quiet builds

Recent changes to this script set $TERMUX_QUIET_BUILD to false which made
all builds quiet by default due to the way how this variable was handled.
android-5
Leonid Plyushch 6 years ago
parent
commit
34022ede81
  1. 4
      build-package.sh

4
build-package.sh

@ -1041,7 +1041,7 @@ termux_step_configure_autotools() {
fi
local QUIET_BUILD=
if [ ! -z ${TERMUX_QUIET_BUILD+x} ]; then
if [ $TERMUX_QUIET_BUILD = true ]; then
QUIET_BUILD="--enable-silent-rules --silent --quiet"
fi
@ -1192,7 +1192,7 @@ termux_step_post_configure() {
termux_step_make() {
local QUIET_BUILD=
if [ ! -z ${TERMUX_QUIET_BUILD+x} ]; then
if [ $TERMUX_QUIET_BUILD = true ]; then
QUIET_BUILD="-s"
fi

Loading…
Cancel
Save