summaryrefslogtreecommitdiff
path: root/liblangtag
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-10 13:43:06 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-10 22:35:31 +0300
commit1ca84e796751997a6b18893ae2cb969673bc0317 (patch)
tree8b171d8b787002e26503afff6584fa0bfbe6eded /liblangtag
parent95e582de1dec6c7b98d498b158ab8a1f4813c24e (diff)
Propagate verbosity to (some) 3rd-party library builds
In a verbose (if verbose or VERBOSE are non-empty) build, pass V=1 to some of the Automake-based external projects, to get verbose output from their builds. This is just a start, should check for all bundled libraries whether there is a simple way to make their build verbose. Change-Id: I470b3be7f43aaa09d5f7102da891f538799a3631
Diffstat (limited to 'liblangtag')
-rw-r--r--liblangtag/ExternalProject_langtag.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/liblangtag/ExternalProject_langtag.mk b/liblangtag/ExternalProject_langtag.mk
index 945bb68a0851..23619ed3b2de 100644
--- a/liblangtag/ExternalProject_langtag.mk
+++ b/liblangtag/ExternalProject_langtag.mk
@@ -33,6 +33,8 @@ $(call gb_ExternalProject_get_state_target,langtag,build):
$(if $(filter-out LINUX FREEBSD,$(OS)),,LDFLAGS="-Wl$(COMMA)-z$(COMMA)origin -Wl$(COMMA)-rpath,\\"\$$\$$ORIGIN:'\'\$$\$$ORIGIN/../ure-link/lib) \
$(if $(filter-out SOLARIS,$(OS)),,LDFLAGS="-Wl$(COMMA)-z$(COMMA)origin -Wl$(COMMA)-R$(COMMA)\\"\$$\$$ORIGIN:'\'\$$\$$ORIGIN/../ure-link/lib) \
$(if $(filter-out WNTGCC,$(OS)$(COM)),,LDFLAGS="-Wl$(COMMA)--enable-runtime-pseudo-reloc-v2") \
- && $(if $(filter WNTMSC,$(OS)$(COM)),REAL_CC="$(shell cygpath -w $(lastword $(CC)))") $(MAKE) \
+ && $(if $(filter WNTMSC,$(OS)$(COM)),REAL_CC="$(shell cygpath -w $(lastword $(CC)))") \
+ $(if $(VERBOSE)$(verbose),V=1) \
+ $(MAKE) \
)
# vim: set noet sw=4 ts=4: