summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
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: