diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-08-07 16:43:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 16:43:45 -0700 |
commit | a23de0330b1c8e12587ae1c6dfc1c6fb2f537c89 (patch) | |
tree | 03cc1c2b74066d6b71eb4be635fb59c0bca9ce18 /libs | |
parent | cfc1c6a7e7cb0bd105760c5f9083b15200d6cac0 (diff) | |
parent | b5ac497d66e53dfe0e3408c57ff34a02e52c26e5 (diff) |
Merge pull request #16293 from Linaro1985/master_fix_libxslt
libxslt: fix compilation because of wrong libxml2 check in configure script
Diffstat (limited to 'libs')
-rw-r--r-- | libs/libxslt/patches/010-fix-xml2-config-check.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/libxslt/patches/010-fix-xml2-config-check.patch b/libs/libxslt/patches/010-fix-xml2-config-check.patch new file mode 100644 index 000000000..657705e91 --- /dev/null +++ b/libs/libxslt/patches/010-fix-xml2-config-check.patch @@ -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` |