summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2013-02-05 18:13:09 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-06 09:37:26 +0000
commitb2d06ba92924ff405160bc632e747f30b93f78a9 (patch)
tree832f3c410b3b7d5b25a9d1ae6b46e6fd859fbb78 /meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch
parent10f05d5b5866317a8c2de09455b548ff848afecd (diff)
downloadpoky-b2d06ba92924ff405160bc632e747f30b93f78a9.tar.gz
intltool: updated to 0.50.2
(From OE-Core rev: f0f5507f30b5d8d919e93cb6af6b724981e9cfef) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch')
-rw-r--r--meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch b/meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch
new file mode 100644
index 0000000000..fc69e37b45
--- /dev/null
+++ b/meta/recipes-devtools/intltool/intltool-0.50.2/remove-xml-check.patch
@@ -0,0 +1,33 @@
1Signed-off-by: Florin Sarbu <florin.sarbu@windriver.com>
2
3Upstream-Status: Inappropriate [OE specific]
4
5Index: intltool-0.40.6/intltool.m4
6===================================================================
7--- intltool-0.40.6.orig/intltool.m4 2009-02-14 14:12:28.000000000 -0800
8+++ intltool-0.40.6/intltool.m4 2011-11-23 15:39:34.689561872 -0800
9@@ -122,14 +122,16 @@
10 IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
11 AC_MSG_RESULT([$IT_PERL_VERSION])
12 fi
13-if test "x$2" != "xno-xml"; then
14- AC_MSG_CHECKING([for XML::Parser])
15- if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
16- AC_MSG_RESULT([ok])
17- else
18- AC_MSG_ERROR([XML::Parser perl module is required for intltool])
19- fi
20-fi
21+
22+# Disable this check since we know XML::Parser is installed
23+#if test "x$2" != "xno-xml"; then
24+# AC_MSG_CHECKING([for XML::Parser])
25+# if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
26+# AC_MSG_RESULT([ok])
27+# else
28+# AC_MSG_ERROR([XML::Parser perl module is required for intltool])
29+# fi
30+#fi
31
32 # Substitute ALL_LINGUAS so we can use it in po/Makefile
33 AC_SUBST(ALL_LINGUAS)