mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-16 12:37:22 +00:00
One patch was a backport and can be dropped, add Upstream-status to the others. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
26 lines
575 B
Diff
26 lines
575 B
Diff
Upstream-status: Unknown
|
|
|
|
diff --git a/acinclude.m4 b/acinclude.m4
|
|
index 4fd452e..206fcbf 100644
|
|
--- a/acinclude.m4
|
|
+++ b/acinclude.m4
|
|
@@ -2532,12 +2532,9 @@ dnl
|
|
AC_DEFUN([PHP_SETUP_LIBXML], [
|
|
AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path,
|
|
[
|
|
- for i in $PHP_LIBXML_DIR /usr/local /usr; do
|
|
- if test -x "$i/bin/xml2-config"; then
|
|
- ac_cv_php_xml2_config_path="$i/bin/xml2-config"
|
|
- break
|
|
- fi
|
|
- done
|
|
+
|
|
+ ac_cv_php_xml2_config_path="$PHP_LIBXML_DIR/xml2-config"
|
|
+
|
|
])
|
|
|
|
if test -x "$ac_cv_php_xml2_config_path"; then
|
|
--
|
|
1.9.3
|
|
|