diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-11-22 13:32:35 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-11-22 13:34:45 +0200 |
commit | de4af9183c09cc5ccc05198e456f3916376835f9 (patch) | |
tree | df8b493ae94304642e2dc8457e956b670e5cb661 /ios | |
parent | b9a3acb44c44cad1716be320f159dc793e6fa07a (diff) |
Don't redirect output to /dev/null if verbosity is requested
Change-Id: Idccc7cc8e9f81576bb24fec0a49144c0fcc16fd5
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_MobileLibreOffice_app.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/CustomTarget_MobileLibreOffice_app.mk b/ios/CustomTarget_MobileLibreOffice_app.mk index 87783faab6b2..76b3e75a9f52 100644 --- a/ios/CustomTarget_MobileLibreOffice_app.mk +++ b/ios/CustomTarget_MobileLibreOffice_app.mk @@ -15,7 +15,7 @@ BUILDID :=$(shell cd $(SRCDIR) && git log -1 --format=%H) #- Macros --------------------------------------------------------------------- define MobileLibreOfficeXcodeBuild - CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -scheme MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) >/dev/null + CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -scheme MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) $(if $(verbose)$(VERBOSE),,>/dev/null) endef #- Targets -------------------------------------------------------------------- |