diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-08-16 19:24:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-08-16 20:54:38 +0200 |
commit | 69e3c28ff216f560ac323413d0b07d7d3c41d357 (patch) | |
tree | ab37d00faf992726ed276660e60575b605ed1a44 | |
parent | 3dac8855e93e09fab9d66f6cc4126a106ed44952 (diff) |
Pass $(verbose) into ExternalProject_icu
Change-Id: I4c93d4c4207645795812a0cafb64cbe32a7a520a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100823
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | external/icu/ExternalProject_icu.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/icu/ExternalProject_icu.mk b/external/icu/ExternalProject_icu.mk index f62d8528cd8d..3c0a22ec9f37 100644 --- a/external/icu/ExternalProject_icu.mk +++ b/external/icu/ExternalProject_icu.mk @@ -27,7 +27,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) : ./runConfigureICU \ $(if $(MSVC_USE_DEBUG_RUNTIME),--enable-debug --disable-release) \ Cygwin/MSVC --disable-extras \ - && $(MAKE) \ + && $(MAKE) $(if $(verbose),VERBOSE=1) \ ,source) $(call gb_Trace_EndRange,icu,EXTERNAL) @@ -77,7 +77,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) : --disable-static --enable-shared $(if $(filter ANDROID,$(OS)),--with-library-suffix=lo)) \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)\ --with-cross-build=$(WORKDIR_FOR_BUILD)/UnpackedTarball/icu/source) \ - && $(MAKE) $(if $(CROSS_COMPILING),DATASUBDIR=data) \ + && $(MAKE) $(if $(CROSS_COMPILING),DATASUBDIR=data) $(if $(verbose),VERBOSE=1) \ $(if $(filter MACOSX,$(OS)), \ && $(PERL) $(SRCDIR)/solenv/bin/macosx-change-install-names.pl shl \ URELIB \ |