summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-08 22:45:17 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-08 22:57:48 +0300
commit316ecfbfbda63f354b80d7f1ccd29d973fb8c6a9 (patch)
treefe6b3dd4a65234c91aa367af1c5eed4f15d3a52c /ios
parent91caa3dbe222498bd17b02ab6390187d7553d1d1 (diff)
Depend on more libraries
Change-Id: Ied2880861a89117294b9d29f42e6d5a6745ad1d2
Diffstat (limited to 'ios')
-rw-r--r--ios/Executable_LibreOffice.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/ios/Executable_LibreOffice.mk b/ios/Executable_LibreOffice.mk
index add087547b97..2db76dc11644 100644
--- a/ios/Executable_LibreOffice.mk
+++ b/ios/Executable_LibreOffice.mk
@@ -36,6 +36,14 @@ $(eval $(call gb_Executable_add_objcobjects,LibreOffice,\
# rebuilt if any library has been rebuilt. Avoids need for "make
# ios.clean".
-$(WORKDIR)/LinkTarget/Executable/LibreOffice : $(wildcard $(OUTDIR)/lib/lib*.a)
+# Yeah, this isn't the full list. I couldn't be bothered. Do we want to
+# list everything here, too (as in gb_LinkTarget__command_dynamiclink in
+# solenv/gbuild/platform/IOS_ARM_GCC.mk)? Should we have a global gb_
+# variable for that list? (To be used for Android builds, too.)
+
+$(WORKDIR)/LinkTarget/Executable/LibreOffice : \
+ $(wildcard $(OUTDIR)/lib/lib*.a) \
+ $(wildcard $(INSTDIR)/$(LIBO_LIB_FOLDER)/lib*.a) \
+ $(wildcard $(WORKDIR)/LinkTarget/StaticLibrary/lib*.a)
# vim: set ts=4 sw=4 et: