From 211a5c29b92303370420146c21eadc39639ced4f Mon Sep 17 00:00:00 2001 From: CvH Date: Sun, 23 Sep 2018 11:58:12 +0200 Subject: [PATCH 1/2] scripts/get: fix previous commit --- scripts/get_archive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get_archive b/scripts/get_archive index f73431eb4f..b66691c689 100755 --- a/scripts/get_archive +++ b/scripts/get_archive @@ -21,7 +21,7 @@ export BUILD_INDENT=$((${BUILD_INDENT:-1}+$BUILD_INDENT_SIZE)) PACKAGE_MIRROR="$DISTRO_MIRROR/$PKG_NAME/$PKG_SOURCE_NAME" [ "$VERBOSE" != "yes" ] && WGET_OPT=-q -WGET_CMD="wget --output-file=- --timeout=30 --tries=3 --passive-ftp --no-check-certificate -c --progress=bar:force --show-progress -O $PACKAGE" +WGET_CMD="wget --output-file=- --timeout=30 --tries=3 --passive-ftp --no-check-certificate -c $WGET_OPT --progress=bar:force --show-progress -O $PACKAGE" # unset LD_LIBRARY_PATH to stop wget from using toolchain/lib and loading libssl.so/libcrypto.so instead of host libraries unset LD_LIBRARY_PATH From 3bcd1b67d95ec5e452d8745f8b7c88ef7a3a8b82 Mon Sep 17 00:00:00 2001 From: CvH Date: Sun, 23 Sep 2018 11:58:12 +0200 Subject: [PATCH 2/2] config/options: make VERBOSE usable from promt --- config/options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/options b/config/options index b2f99fb7ac..7013860093 100644 --- a/config/options +++ b/config/options @@ -82,7 +82,7 @@ fi [ -z "${LOCAL_CXX}" ] && export LOCAL_CXX="$(which g++)" # verbose compilation mode (yes/no) - VERBOSE="yes" + VERBOSE="${VERBOSE:-yes}" # Concurrency make level (-j option) # Try value 1 (default) to 4 on single CPU computer, or more on