mirror of https://github.com/BOINC/boinc.git
[Android] Add possibility to set VERBOSE in android build scripts globally
Let it still be overwritten by --verbose parameter Co-authored-by: talregev <tal.regev@gmail.com> Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
This commit is contained in:
parent
c84bf6ead0
commit
85015e12b6
|
@ -48,7 +48,8 @@ doclean=""
|
|||
cache_dir=""
|
||||
arch=""
|
||||
silent=""
|
||||
verbose=""
|
||||
verbose="${VERBOSE:-no}"
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
key="$1"
|
||||
case $key in
|
||||
|
|
|
@ -6,7 +6,8 @@ set -e
|
|||
#
|
||||
|
||||
# Script to compile everything BOINC needs for Android
|
||||
export VERBOSE=false
|
||||
export VERBOSE="no"
|
||||
|
||||
cd ../
|
||||
BUILD_DIR="$PWD/3rdParty/buildCache"
|
||||
cd android/
|
||||
|
|
Loading…
Reference in New Issue