summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus/python-config.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-03-09 23:22:14 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-15 08:40:09 +0000
commit73dd9fae43460894c96d4d801293efceb30d9596 (patch)
tree9ec02e0c54cf1a5119fa6ec5e023ee4ad293e060 /meta/recipes-core/dbus/dbus/python-config.patch
parent1341ebeab0eb3958c8d7135cf7b60835d54d1fa5 (diff)
downloadpoky-73dd9fae43460894c96d4d801293efceb30d9596.tar.gz
dbus: update 1.12.22 -> 1.14.0
Drop patches: clear-guid_from_server-if-send_negotiate_unix_f.patch stop_using_selinux_set_mapping.patch (both merged upstream) python-config.patch (patched code removed upstream) License-Update: whitespace fixes (From OE-Core rev: 4513e4369973afb71f40625da058a3eaf6ccd4c4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dbus/dbus/python-config.patch')
-rw-r--r--meta/recipes-core/dbus/dbus/python-config.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-core/dbus/dbus/python-config.patch b/meta/recipes-core/dbus/dbus/python-config.patch
deleted file mode 100644
index da2f10c726..0000000000
--- a/meta/recipes-core/dbus/dbus/python-config.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1When building the dbus-ptest package, we have to enable python. However
2checking if the host-system python has the necessary library isn't useful.
3
4Disable the python module check for cross compiling.
5
6Upstream-Status: Inappropriate [oe specific]
7
8Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
9
10---
11 configure.ac | 7 -------
12 1 file changed, 7 deletions(-)
13
14diff --git a/configure.ac b/configure.ac
15index 80d27b4..becc1cc 100644
16--- a/configure.ac
17+++ b/configure.ac
18@@ -279,13 +279,6 @@ if test "x$enable_tests" = xyes; then
19 # full test coverage is required, Python is a hard dependency
20 AC_MSG_NOTICE([Full test coverage (--enable-tests=yes) requires Python, dbus-python, pygi])
21 AM_PATH_PYTHON([2.6])
22- AC_MSG_CHECKING([for Python modules for full test coverage])
23- if "$PYTHON" -c "import dbus, gi.repository.GObject, dbus.mainloop.glib"; then
24- AC_MSG_RESULT([yes])
25- else
26- AC_MSG_RESULT([no])
27- AC_MSG_ERROR([cannot import dbus, gi.repository.GObject, dbus.mainloop.glib Python modules])
28- fi
29 else
30 # --enable-tests not given: do not abort if Python is missing
31 AM_PATH_PYTHON([2.6], [], [:])
32--
331.9.1
34