summaryrefslogtreecommitdiffstats
path: root/libcdr
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 /libcdr
parentCID#1103720 make leak impossible (diff)
downloadcore-1ca84e796751997a6b18893ae2cb969673bc0317.tar.gz
core-1ca84e796751997a6b18893ae2cb969673bc0317.zip
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 'libcdr')
-rw-r--r--libcdr/ExternalProject_libcdr.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/libcdr/ExternalProject_libcdr.mk b/libcdr/ExternalProject_libcdr.mk
index 1a224905f2df..9dda27fefd6a 100644
--- a/libcdr/ExternalProject_libcdr.mk
+++ b/libcdr/ExternalProject_libcdr.mk
@@ -37,7 +37,9 @@ $(call gb_ExternalProject_get_state_target,libcdr,build) :
--disable-weffc \
CXXFLAGS="$(if $(filter NO,$(SYSTEM_BOOST)),-I$(call gb_UnpackedTarball_get_dir,boost),$(BOOST_CPPFLAGS))" \
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
- && (cd $(EXTERNAL_WORKDIR)/src/lib && $(MAKE)) \
+ && (cd $(EXTERNAL_WORKDIR)/src/lib && \
+ $(if $(VERBOSE)$(verbose),V=1) \
+ $(MAKE)) \
)
# vim: set noet sw=4 ts=4: