1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

[OP-1085] Qt5.1.1 - made curl report progress by default (can be switched off by adding BATCH=1 on make command line)

This commit is contained in:
Philippe Renon 2013-10-24 00:09:01 +02:00
parent 0aad8afc90
commit 6bfef53b81

View File

@ -177,15 +177,20 @@ MSG_NOTICE = $(QUOTE) NOTE $(QUOTE)
# Verbosity level
ifeq ($(V), 1)
CURL_OPTIONS :=
MAKE_SILENT :=
UNZIP_SILENT :=
else
CURL_OPTIONS := --silent
MAKE_SILENT := --silent
UNZIP_SILENT := -q
endif
# Batch mode
ifeq ($(BATCH), 1)
CURL_OPTIONS := --silent
else
CURL_OPTIONS :=
endif
# MSYS tar workaround
ifeq ($(UNAME), Windows)
TAR_OPTIONS := --force-local
@ -201,6 +206,7 @@ ifneq ($(strip $(filter $(addsuffix _install,all_sdk $(ALL_SDK_TARGETS)),$(MAKEC
$(info $(EMPTY) NOTE Use 'make all_sdk_distclean' to remove installation files)
$(info $(EMPTY) NOTE Use 'make all_sdk_version' to check toolchain versions)
$(info $(EMPTY) NOTE Add 'V=1' to make command line to diagnose make problems)
$(info $(EMPTY) NOTE Add 'BATCH=1' to make command line to disable progress reporting during downloads)
endif
##############################