summaryrefslogtreecommitdiff
path: root/solenv/gbuild/platform/android.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-09-19 18:27:11 +0200
committerMichael Stahl <mstahl@redhat.com>2013-09-21 19:23:45 +0200
commit5547d0c2ead4db1e87b8e4072ab9ce8f124c7f0c (patch)
tree03301df3fab5cbc95c9afe3b395d5042c5a9dd74 /solenv/gbuild/platform/android.mk
parent916071900d85317abeda8a40ba78989b3daab174 (diff)
gbuild: rename LinkTarget variable LIBS
LIBS is apparently used by autotools build system and passed to configure at least in mythes and hunspell, where the LinkTarget variable could cause problems by inheritance. Change-Id: Ia267dd0a24c96914208869d7b47552b44a701735
Diffstat (limited to 'solenv/gbuild/platform/android.mk')
-rw-r--r--solenv/gbuild/platform/android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/android.mk b/solenv/gbuild/platform/android.mk
index 33b3d0887f1f..23839b1a4693 100644
--- a/solenv/gbuild/platform/android.mk
+++ b/solenv/gbuild/platform/android.mk
@@ -49,7 +49,7 @@ $(call gb_Helper_abbreviate_dirs,\
$(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \
$(foreach extraobjectlist,$(EXTRAOBJECTLISTS),`cat $(extraobjectlist)`) \
-Wl$(COMMA)--start-group $(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_target,$(lib))) -Wl$(COMMA)--end-group \
- $(LIBS) \
+ $(T_LIBS) \
$(patsubst lib%.a,-l%,$(patsubst lib%.so,-l%,$(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib))))) \
-o $(1))
endef