summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus/python-config.patch
diff options
context:
space:
mode:
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