mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
contrib: add BATCH_MODE env var to reduce log size
If BATCH_MODE is set to a non-empty string, downloads and uncompress tools are silented to reduce the size of the output console log. This is not enable by default to let manual usage fully verbose. This is useful in case of automatic builds. Change-Id: I7efa6c0f9e8a2edf991030cb7e30d25227ea6674 Reviewed-by: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
This commit is contained in:

committed by
Stepan Salenikovich

parent
bcc4c172e4
commit
c398f8167e
@ -25,10 +25,10 @@ AUTOCONF=$(PREFIX)/bin/autoconf
|
||||
export AUTOCONF
|
||||
|
||||
ifeq ($(shell curl --version >/dev/null 2>&1 || echo FAIL),)
|
||||
download = curl -f -L -- "$(1)" > "$@"
|
||||
download = curl $(if ${BATCH_MODE},-sS) -f -L --retry-delay 10 --retry 2 -- "$(1)" > "$@"
|
||||
else ifeq ($(shell wget --version >/dev/null 2>&1 || echo FAIL),)
|
||||
download = rm -f $@.tmp && \
|
||||
wget --passive -c -p -O $@.tmp "$(1)" && \
|
||||
wget $(if ${BATCH_MODE},-nv) --passive -t 2 -w 10 -c -p -O $@.tmp "$(1)" && \
|
||||
touch $@.tmp && \
|
||||
mv $@.tmp $@
|
||||
else ifeq ($(which fetch >/dev/null 2>&1 || echo FAIL),)
|
||||
@ -41,10 +41,10 @@ download = $(error Neither curl nor wget found!)
|
||||
endif
|
||||
|
||||
UNPACK = $(RM) -R $@ \
|
||||
$(foreach f,$(filter %.tar.gz %.tgz,$^), && tar xvzf $(f)) \
|
||||
$(foreach f,$(filter %.tar.bz2,$^), && tar xvjf $(f)) \
|
||||
$(foreach f,$(filter %.tar.xz,$^), && tar xvJf $(f)) \
|
||||
$(foreach f,$(filter %.zip,$^), && unzip $(f))
|
||||
$(foreach f,$(filter %.tar.gz %.tgz,$^), && tar xzf $(f) $(if ${BATCH_MODE},,-v)) \
|
||||
$(foreach f,$(filter %.tar.bz2,$^), && tar xjf $(f) $(if ${BATCH_MODE},,-v)) \
|
||||
$(foreach f,$(filter %.tar.xz,$^), && tar xJf $(f) $(if ${BATCH_MODE},,-v)) \
|
||||
$(foreach f,$(filter %.zip,$^), && unzip $(if ${BATCH_MODE},-q) $(f))
|
||||
|
||||
UNPACK_DIR = $(basename $(basename $(notdir $<)))
|
||||
APPLY = (cd $(UNPACK_DIR) && patch -p1) <
|
||||
|
Reference in New Issue
Block a user