summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-04-18 22:05:54 +0300
committerTor Lillqvist <tml@iki.fi>2013-04-19 00:18:33 +0300
commit7711a60a64cc02e2a733b73be21525370d3840b2 (patch)
tree9a59c23edefe4850f35540d6e58d8bbeaa512717 /ios
parentaca9824cfd65e3246fd21a1af5f36eda2ca69c75 (diff)
Try to get the tinderbox build working
Change-Id: Ie0a9b6e64c35a046afbb5c26c1b75bdd0d897a23
Diffstat (limited to 'ios')
-rw-r--r--ios/Executable_LibreOffice.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/ios/Executable_LibreOffice.mk b/ios/Executable_LibreOffice.mk
index 8e4e0e1cbf1a..01047449f02f 100644
--- a/ios/Executable_LibreOffice.mk
+++ b/ios/Executable_LibreOffice.mk
@@ -34,12 +34,14 @@ $(eval $(call gb_Executable_add_objcobjects,LibreOffice,\
$(call gb_Executable_use_package,LibreOffice,touch_inc)
-$(call gb_LinkTarget_get_target,Executable/LibreOffice) : $(call gb_Postprocess_get_target,AllModulesButInstsetNative)
+# Mark the executable as dependingf on AllModulesButInstsetNative so
+# that it is built only after all libraries that it links to (which
+# might be any of them) have been built.
# Mark the executable as depending on all libraries so that it gets
# rebuilt if any library has been rebuilt. Avoids need for "make
# ios.clean".
-$(call gb_LinkTarget_get_target,Executable/LibreOffice) : $(wildcard $(OUTDIR)/lib/lib*.a)
+$(call gb_LinkTarget_get_target,Executable/LibreOffice) : $(call gb_Postprocess_get_target,AllModulesButInstsetNative) $(wildcard $(OUTDIR)/lib/lib*.a)
# vim: set ts=4 sw=4 et: