diff options
author | Jörg Krause <joerg.krause@embedded.rocks> | 2016-03-28 23:09:23 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-29 02:57:41 +0200 |
commit | 0df5ced2ea4a294d140f48aa6959f29695dcb3b0 (patch) | |
tree | 95cb9020f39175cf4a6cd1ba6d809976b22e1dad /package/libxslt | |
parent | b71a0176c4ca8952c364aad693136c69a268915f (diff) | |
download | buildroot-0df5ced2ea4a294d140f48aa6959f29695dcb3b0.tar.gz buildroot-0df5ced2ea4a294d140f48aa6959f29695dcb3b0.zip |
package/libxslt: fix static build
Set --with-libxml-libs-prefix so libtool finds the correct dependencies for
libxml2.
Fixes:
http://autobuild.buildroot.net/results/3f8/3f8d876ed6cfe6e73a75fa8904ebdd3f6f0fe53c/
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libxslt')
-rw-r--r-- | package/libxslt/libxslt.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk index 2e5cc14b54..0cc4bb960b 100644 --- a/package/libxslt/libxslt.mk +++ b/package/libxslt/libxslt.mk @@ -14,7 +14,8 @@ LIBXSLT_CONF_OPTS = \ --with-gnu-ld \ --without-debug \ --without-python \ - --with-libxml-prefix=$(STAGING_DIR)/usr/ + --with-libxml-prefix=$(STAGING_DIR)/usr/ \ + --with-libxml-libs-prefix=$(STAGING_DIR)/usr/lib LIBXSLT_CONFIG_SCRIPTS = xslt-config LIBXSLT_DEPENDENCIES = libxml2 |