diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-09-16 12:13:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-22 11:08:29 +0200 |
commit | 5905dfeafff2c8071e6f2e212a077b8450d1a0d6 (patch) | |
tree | a74299c5f8f5150920a49341b596e503fb214715 /ios | |
parent | 031fca3abac5692bf89a2e8a34dead3425154a4f (diff) |
gbuild: refactor LinkTarget representation
If the link targets are not in workdir then 2 different aspects are
needed: the previously used location relative to workdir's LinkTarget
dir (for all the misc. related targets), and the full target file.
Adding an additional parameter to all LinkTarget functions would be
quite annoying, especially since it would need passing through all the
gb_LinkTarget__use functions in RepositoryExternal.mk; instead encode
both into the linktarget itself, and modify the functions
gb_LinkTarget_get_target to return the target and all others to return
the workdir linktargetname.
- replace gb_Library_get_linktargetname with either:
* gb_Library__get_workdir_linktargetname
* gb_Library__get_linktarget_target
* gb_Library_get_linktarget
- similar for gb_Executable_get_linktargetname
- similar for gb_StaticLibrary_get_linktargetname
- similar for gb_CppunitTest__get_linktargetname
- add calls to gb_LinkTarget__get_workdir_linktargetname where needed
Change-Id: I917ad7957fee50ec2517a9f9cc9ff452c8d97d1b
Diffstat (limited to 'ios')
-rw-r--r-- | ios/Executable_LibreOffice.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/Executable_LibreOffice.mk b/ios/Executable_LibreOffice.mk index 7689ea965402..add087547b97 100644 --- a/ios/Executable_LibreOffice.mk +++ b/ios/Executable_LibreOffice.mk @@ -36,6 +36,6 @@ $(eval $(call gb_Executable_add_objcobjects,LibreOffice,\ # 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) +$(WORKDIR)/LinkTarget/Executable/LibreOffice : $(wildcard $(OUTDIR)/lib/lib*.a) # vim: set ts=4 sw=4 et: |