summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/systemtap/systemtap
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-11-08 23:07:41 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-11 17:21:41 +0000
commit6d57ce3fa34bb3c4d20d7b744296f154a0776edc (patch)
tree7df292c354281c28cc042a9f3dadddf1e605142b /meta/recipes-kernel/systemtap/systemtap
parentc852c9352fb054ddaa9ff1e5f42b13b76618b47f (diff)
downloadpoky-6d57ce3fa34bb3c4d20d7b744296f154a0776edc.tar.gz
systemtap: remove explicit msgfmt check
Passing --disable-nls should be enough to disable the requirement for a full gettext to be present, but the upstream configure explicitly checks for msgfmt even if it isn't going to be used. To avoid having to depend on gettext-native, patch this check out. (From OE-Core rev: 2f8d2a74f73490c1ae35131d3eb3592f7ee0a1e4) (From OE-Core rev: 7d689876574ba47e5ad07d67ad40fd865b0c27f5) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/systemtap/systemtap')
-rw-r--r--meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch b/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
new file mode 100644
index 0000000000..471e62c56b
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
@@ -0,0 +1,15 @@
1There is no need to explicitly check that msgfmt was found as the gettext macros
2handle this for us if NLS is enabled.
3
4Upstream-Status: Pending
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7diff --git a/configure.ac b/configure.ac
8index e56079a..284bbe0 100644
9--- a/configure.ac
10+++ b/configure.ac
11@@ -39,4 +38,0 @@ AM_GNU_GETTEXT_VERSION([0.19.4])
12-if test "x$GMSGFMT" = "x:"; then
13- AC_MSG_ERROR([missing gnu /usr/bin/msgfmt])
14-fi
15-