[Libreoffice-commits] core.git: ios/CustomTarget_MobileLibreOffice_app.mk
Tor Lillqvist
tml at collabora.com
Wed Oct 30 09:31:36 CET 2013
ios/CustomTarget_MobileLibreOffice_app.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit dd5347ef29686cc02928243b571f11444ed4e6b9
Author: Tor Lillqvist <tml at collabora.com>
Date: Wed Oct 30 10:29:05 2013 +0200
Build targets instead of a scheme which doesn't exist in a clean tree
If you try to build in a tree fresh from a clone, with no manual build in Xcode done,
there will be no "schemes", so the xcodebuild will fail. Instead, build the "targets".
Change-Id: Ie2689880e66d1aaa97661970d2060f5935cfcf17
diff --git a/ios/CustomTarget_MobileLibreOffice_app.mk b/ios/CustomTarget_MobileLibreOffice_app.mk
index e3e95c1..e2119a1 100644
--- a/ios/CustomTarget_MobileLibreOffice_app.mk
+++ b/ios/CustomTarget_MobileLibreOffice_app.mk
@@ -15,7 +15,8 @@ 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 shared/ios_sharedlo.xcodeproj -target ios_sharedlo -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) >/dev/null
+ CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -target MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) >/dev/null
endef
#- Targets --------------------------------------------------------------------
More information about the Libreoffice-commits
mailing list