blob: d0831669f9b093ed724ef94673dc2ddb60ec2443 [file] [log] [blame]
Armin Kuster066be202018-07-08 14:58:53 -07001Upstream-Status: Pending
Patrick Williamsb48b7b42016-08-17 15:04:38 -05002
3diff --git a/acinclude.m4 b/acinclude.m4
4index 4fd452e..206fcbf 100644
5--- a/acinclude.m4
6+++ b/acinclude.m4
7@@ -2532,12 +2532,9 @@ dnl
8 AC_DEFUN([PHP_SETUP_LIBXML], [
9 AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path,
10 [
11- for i in $PHP_LIBXML_DIR /usr/local /usr; do
12- if test -x "$i/bin/xml2-config"; then
13- ac_cv_php_xml2_config_path="$i/bin/xml2-config"
14- break
15- fi
16- done
17+
18+ ac_cv_php_xml2_config_path="$PHP_LIBXML_DIR/xml2-config"
19+
20 ])
21
22 if test -x "$ac_cv_php_xml2_config_path"; then
23--
241.9.3
25