diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-19 09:27:44 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-19 09:28:54 +0300 |
commit | 685a12ac0e4867a5082d08d5cbf500b3a081c14d (patch) | |
tree | 6bf70fdba669044d1c4a44781487f909b20aac31 /ios | |
parent | eeab70fd53ee88b44afc5278ae81db53403f4a0e (diff) |
Prefer simple and working solution to obscure and non-working
Change-Id: I5c7d02daced542222c2cb3881fafd2d58fe7f14d
Diffstat (limited to 'ios')
-rw-r--r-- | ios/Executable_LibreOffice.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ios/Executable_LibreOffice.mk b/ios/Executable_LibreOffice.mk index 01047449f02f..69745ad42e71 100644 --- a/ios/Executable_LibreOffice.mk +++ b/ios/Executable_LibreOffice.mk @@ -34,14 +34,10 @@ $(eval $(call gb_Executable_add_objcobjects,LibreOffice,\ $(call gb_Executable_use_package,LibreOffice,touch_inc) -# 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) : $(call gb_Postprocess_get_target,AllModulesButInstsetNative) $(wildcard $(OUTDIR)/lib/lib*.a) +$(call gb_LinkTarget_get_target,Executable/LibreOffice) : $(wildcard $(OUTDIR)/lib/lib*.a) # vim: set ts=4 sw=4 et: |