summaryrefslogtreecommitdiffstats
path: root/package/libxslt
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2009-08-10 20:21:13 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2009-08-10 20:21:13 +0200
commit5cecbb7fba1c97351543efad399ef8801e6e63ee (patch)
treeaacbc76999b96ed82ebde5529f5c8fbbd70cf950 /package/libxslt
parent26e37dd3c48878ed351092e171840591e2c7e1b8 (diff)
downloadbuildroot-novena-5cecbb7fba1c97351543efad399ef8801e6e63ee.tar.gz
buildroot-novena-5cecbb7fba1c97351543efad399ef8801e6e63ee.zip
libxslt: tell ./configure where libxml is
libxslt is currently configured with --with-libxml-include-prefix, which allows libxslt ./configure to find libxml headers. However, the build of libxslt fails because it doesn't find the library itself. Therefore, instead of using --with-libxml-include-prefix, we switch to the more generic --with-libxml-prefix. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libxslt')
-rw-r--r--package/libxslt/libxslt.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
index 8d8785f49..35659d355 100644
--- a/package/libxslt/libxslt.mk
+++ b/package/libxslt/libxslt.mk
@@ -21,7 +21,7 @@ LIBXSLT_CONF_OPT = --with-gnu-ld --enable-shared \
$(DISABLE_NLS) $(DISABLE_IPV6) \
--without-debugging --without-python \
--without-threads \
- --with-libxml-include-prefix=$(STAGING_DIR)/usr/include/libxml2
+ --with-libxml-prefix=$(STAGING_DIR)/usr/
LIBXSLT_DEPENDENCIES = uclibc $(LIBXSLT_DEPENDENCIES_EXTRA)