mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 01:44:32 +04:00
libxslt: fix compilation because of wrong libxml2 check in configure script
More details:90c34c8bb9Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com> (cherry picked from commitb5ac497d66)
This commit is contained in:
11
libs/libxslt/patches/010-fix-xml2-config-check.patch
Normal file
11
libs/libxslt/patches/010-fix-xml2-config-check.patch
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -546,7 +546,7 @@ dnl make sure xml2-config is executable,
|
||||||
|
dnl test version and init our variables
|
||||||
|
dnl
|
||||||
|
|
||||||
|
-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
|
||||||
|
+if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
|
||||||
|
then
|
||||||
|
AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION)
|
||||||
|
XMLVERS=`$XML_CONFIG --version`
|
||||||
Reference in New Issue
Block a user