diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2017-09-12 23:50:20 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2017-09-13 00:03:02 +0200 |
commit | 69d42e2e58df1596567edca2c6bc6c2bacdf89c2 (patch) | |
tree | 14a8f7335f86fb3be2e92e799e28ff4919a061b3 /dev-libs/libxslt/files | |
parent | dev-libs/gmime: version bump 2.6.23 → 3.0.2 (diff) | |
download | gentoo-69d42e2e58df1596567edca2c6bc6c2bacdf89c2.tar.gz gentoo-69d42e2e58df1596567edca2c6bc6c2bacdf89c2.tar.bz2 gentoo-69d42e2e58df1596567edca2c6bc6c2bacdf89c2.zip |
dev-libs/libxslt: fix xslt-config, bug #630784
Closes: https://bugs.gentoo.org/630784
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-libs/libxslt/files')
-rw-r--r-- | dev-libs/libxslt/files/1.1.30-unbreak-xslt-config.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-libs/libxslt/files/1.1.30-unbreak-xslt-config.patch b/dev-libs/libxslt/files/1.1.30-unbreak-xslt-config.patch new file mode 100644 index 000000000000..6e367f976916 --- /dev/null +++ b/dev-libs/libxslt/files/1.1.30-unbreak-xslt-config.patch @@ -0,0 +1,37 @@ +From 9608d20739b36087f0e6865cc924769d3b286188 Mon Sep 17 00:00:00 2001 +From: Gilles Dartiguelongue <eva@gentoo.org> +Date: Tue, 12 Sep 2017 23:44:35 +0200 +Subject: [PATCH] Move XML_CONFIG assignment to unbreak xslt-config + +Bug: https://bugs.gentoo.org/630784 +--- + configure.in | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/configure.in b/configure.in +index e6f649cd..49e6b6cf 100644 +--- a/configure.in ++++ b/configure.in +@@ -518,9 +518,6 @@ else + LIBXML_MANUAL_SEARCH=yes + fi + +-if test "x$LIBXML_MANUAL_SEARCH" != "xno" +-then +- + dnl + dnl where is xml2-config + dnl +@@ -534,6 +531,9 @@ else + AC_PATH_TOOL([XML_CONFIG], [xml2-config], [false]) + fi + ++if test "x$LIBXML_MANUAL_SEARCH" != "xno" ++then ++ + dnl + dnl imported from libxml2, c.f. #77827 + dnl +-- +2.14.1 + |