mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 12:49:33 +02:00
Rebase 0007-qt-python-Add-variables-to-tests.patch Rework 0007-qt-python-Add-variables-to-tests.patch -> 0007-python-Add-variables-to-tests.patch Drop newly added option --disable-lang-qt-test which is merged to --disable-gpg-test by upstream commit [26820ba qt: Respect --disable-gpg-test for tests] (From OE-Core rev: 9457163b2c4982a64814c6b38c292d7bc61ff643) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From f51bf1114bee6d56a950dcc6ebb46d6138b3faed Mon Sep 17 00:00:00 2001
|
|
From: Ross Burton <ross.burton@intel.com>
|
|
Date: Wed, 16 Aug 2017 02:06:45 -0400
|
|
Subject: [PATCH 4/7] python import
|
|
|
|
Don't check for output on stderr to know if an import worked, host inputrc and
|
|
sysroot readline can cause warnings on stderr.
|
|
|
|
Upstream-Status: Backport (from autoconf-archive 883a2abd)
|
|
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
|
|
|
Rebase to 1.9.0
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
m4/ax_python_devel.m4 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/m4/ax_python_devel.m4 b/m4/ax_python_devel.m4
|
|
index b990d5b..318b089 100644
|
|
--- a/m4/ax_python_devel.m4
|
|
+++ b/m4/ax_python_devel.m4
|
|
@@ -137,7 +137,7 @@ variable to configure. See ``configure --help'' for reference.
|
|
#
|
|
AC_MSG_CHECKING([for the distutils Python package])
|
|
ac_distutils_result=`$PYTHON -c "import distutils" 2>&1`
|
|
- if test -z "$ac_distutils_result"; then
|
|
+ if test $? -eq 0; then
|
|
AC_MSG_RESULT([yes])
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
--
|
|
2.7.4
|
|
|