mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 21:09:39 +01:00
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) 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>
34 lines
914 B
Diff
34 lines
914 B
Diff
From 43f1b04449bb1cf7e0092263f1c2a25f3fca08ef Mon Sep 17 00:00:00 2001
|
|
From: Ross Burton <ross.burton@intel.com>
|
|
Date: Tue, 8 Nov 2016 23:07:41 +0000
|
|
Subject: [PATCH 5/6] systemtap: remove explicit msgfmt check
|
|
|
|
There is no need to explicitly check that msgfmt was found as the gettext macros
|
|
handle this for us if NLS is enabled.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
|
|
|
---
|
|
configure.ac | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 2ea9b3cbf..95417f59c 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -36,10 +36,6 @@ AC_CHECK_FUNCS(openat)
|
|
AM_GNU_GETTEXT(external)
|
|
AM_GNU_GETTEXT_VERSION([0.19.4])
|
|
|
|
-if test "x$GMSGFMT" = "x:"; then
|
|
- AC_MSG_ERROR([missing gnu /usr/bin/msgfmt])
|
|
-fi
|
|
-
|
|
# We want the 'PYTHON' varible to be python version 2. We also want
|
|
# our custom 'PYTHON3' varible to be python version 3.
|
|
#
|
|
--
|
|
2.11.0
|
|
|