diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-12-04 16:50:05 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-12-04 16:50:05 +0000 |
commit | 2e79479d348c253a508859c59bfaca6732c67cc6 (patch) | |
tree | f075cc02f78e4a1e6af7287c8c55d4f69897bb6b | |
parent | 5851eae5f040ee36feef61cf51602c3ac76031e3 (diff) |
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.
-rw-r--r-- | package/qtopia4/qtopia4.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk index 21dd79649..28be3a0a8 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) \ |