summaryrefslogtreecommitdiff
path: root/fontconfig
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-10-30 14:03:42 +0200
committerTor Lillqvist <tml@iki.fi>2012-10-30 14:06:52 +0200
commit1f2c5dc6be09e372bc39757d786d32a326732c59 (patch)
treeea994dceb51b7b862dc4eeeac3beedb3d71093cd /fontconfig
parentbd2c14ec78a7549d4a19738154cdd5ea890f61c4 (diff)
Try to fix Android tinderbox build
For some reason $(LIBS) seems to contain a bunch of unneeded libraries including -llo-bootstrap when we get here. Those won't be found by the basic configury as there are no -L switches included, causing the lovely "C compiler cannot create executables" problem. Change-Id: Id7cfba191bd16649c7948194eb7ebdbfbfb74f3e
Diffstat (limited to 'fontconfig')
-rw-r--r--fontconfig/ExternalProject_fontconfig.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/fontconfig/ExternalProject_fontconfig.mk b/fontconfig/ExternalProject_fontconfig.mk
index 90107a1fc055..294c6b26e9f8 100644
--- a/fontconfig/ExternalProject_fontconfig.mk
+++ b/fontconfig/ExternalProject_fontconfig.mk
@@ -21,7 +21,7 @@ $(eval $(call gb_ExternalProject_register_targets,fontconfig,\
$(call gb_ExternalProject_get_state_target,fontconfig,build) :
cd $(EXTERNAL_WORKDIR) \
- && $(if $(debug),CFLAGS=-g) $(if $(filter ANDROID,$(OS)),LIBS="-lm $(LIBS)") ./configure \
+ && $(if $(debug),CFLAGS=-g) $(if $(filter ANDROID,$(OS)),LIBS="-lm") ./configure \
--disable-shared \
--with-arch=arm \
--with-expat-includes=$(OUTDIR)/inc/external \