aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2015-07-08 21:01:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-12 22:53:21 +0100
commitbebbcb10f467b40cc9a2fb64c824f2ef4142f7fe (patch)
tree448e211811208f700836640174079d751709184d /meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch
parent64733935306d6b484db40b15e6e4938fbabf1d65 (diff)
downloadopenembedded-core-contrib-bebbcb10f467b40cc9a2fb64c824f2ef4142f7fe.tar.gz
intltool: Upgrade 0.50.2 -> 0.51.0
* Remove uclibc.patch as the whole localedir guessing code has been removed upstream. * Add patch to fix deprecation warnings (and the resulting broken install paths) when using Perl 5.22 (RB) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch')
-rw-r--r--meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch b/meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch
deleted file mode 100644
index 145c181f17..0000000000
--- a/meta/recipes-devtools/intltool/intltool-0.50.2/uclibc.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-on uclibc systems localedir should point to /usr/'share' as usual.
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Index: intltool-0.50.2/intltool.m4
-===================================================================
---- intltool-0.50.2.orig/intltool.m4 2014-03-15 22:09:01.016627665 -0700
-+++ intltool-0.50.2/intltool.m4 2014-03-15 22:12:09.732631206 -0700
-@@ -173,6 +173,9 @@
- AC_CHECK_FUNC(bind_textdomain_codeset,
- [DATADIRNAME=share], [DATADIRNAME=lib])
- ;;
-+ *-*-*uclibc*)
-+ [DATADIRNAME=share]
-+ ;;
- *)
- [DATADIRNAME=lib]
- ;;