From: Hans-Christian Egtvedt Date: Thu, 4 Dec 2008 16:50:05 +0000 (-0000) Subject: qtopia4: make build verbose or silent depending on user input X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e79479d348c253a508859c59bfaca6732c67cc6;p=buildroot.git qtopia4: make build verbose or silent depending on user input This will make Qt compile silent unless the user specifies V=1 or VERBOSE=1 when running make. --- diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk index 21dd796493..28be3a0a84 100644 --- a/package/qtopia4/qtopia4.mk +++ b/package/qtopia4/qtopia4.mk @@ -326,7 +326,7 @@ endif PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig:$(PKG_CONFIG_PATH)" \ PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \ ./configure \ - -verbose \ + $(if $(VERBOSE),-verbose,-silent) \ -force-pkg-config \ -embedded $(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM) \ $(QTOPIA4_QCONFIG_COMMAND) \