summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2017-02-24 18:02:03 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-29 16:50:52 +0100
commit0d91032b846d27d9474f42ba4a354bb7615cfc56 (patch)
treec077ec3dc8cd95fc731162921378571fceca31ab /meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
parent4812871780ba0765b237bf482d10a39d4a0dccfe (diff)
downloadpoky-0d91032b846d27d9474f42ba4a354bb7615cfc56.tar.gz
systemtap: update to 3.1
Removed patches are in upstream. Rebase monitor-option.patch and no-msgfmt-check.patch Add support for python 3 probes (this necessitates the 0001-Do-not-let-configure-write-a-python-location-into-th.patch and the Add 0001-Install-python-modules-to-correct-library-dir.patch to install python modules to correct destination). Add perl to RDEPENDS to fix a QA warning about one of the installed files. (From OE-Core rev: e3bccfba499565ea13f154a11dadcab48ef5e0ab) (From OE-Core rev: 74f390351bdf5b8749cba6e2345ef14d3ff9f077) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> 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/no-msgfmt-check.patch')
-rw-r--r--meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch22
1 files changed, 20 insertions, 2 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch b/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
index 471e62c56b..2c860b19e5 100644
--- a/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
+++ b/meta/recipes-kernel/systemtap/systemtap/no-msgfmt-check.patch
@@ -1,15 +1,33 @@
1From 43f1b04449bb1cf7e0092263f1c2a25f3fca08ef Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com>
3Date: Tue, 8 Nov 2016 23:07:41 +0000
4Subject: [PATCH 5/6] systemtap: remove explicit msgfmt check
5
1There is no need to explicitly check that msgfmt was found as the gettext macros 6There is no need to explicitly check that msgfmt was found as the gettext macros
2handle this for us if NLS is enabled. 7handle this for us if NLS is enabled.
3 8
4Upstream-Status: Pending 9Upstream-Status: Pending
5Signed-off-by: Ross Burton <ross.burton@intel.com> 10Signed-off-by: Ross Burton <ross.burton@intel.com>
6 11
12---
13 configure.ac | 4 ----
14 1 file changed, 4 deletions(-)
15
7diff --git a/configure.ac b/configure.ac 16diff --git a/configure.ac b/configure.ac
8index e56079a..284bbe0 100644 17index 2ea9b3cbf..95417f59c 100644
9--- a/configure.ac 18--- a/configure.ac
10+++ b/configure.ac 19+++ b/configure.ac
11@@ -39,4 +38,0 @@ AM_GNU_GETTEXT_VERSION([0.19.4]) 20@@ -36,10 +36,6 @@ AC_CHECK_FUNCS(openat)
21 AM_GNU_GETTEXT(external)
22 AM_GNU_GETTEXT_VERSION([0.19.4])
23
12-if test "x$GMSGFMT" = "x:"; then 24-if test "x$GMSGFMT" = "x:"; then
13- AC_MSG_ERROR([missing gnu /usr/bin/msgfmt]) 25- AC_MSG_ERROR([missing gnu /usr/bin/msgfmt])
14-fi 26-fi
15- 27-
28 # We want the 'PYTHON' varible to be python version 2. We also want
29 # our custom 'PYTHON3' varible to be python version 3.
30 #
31--
322.11.0
33