aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2014-01-04 18:15:54 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2014-11-27 14:19:40 +0100
commit5cd62c6a0ab4f7c26b5b5fab05415b6503926d8f (patch)
tree7e678a3e41150a6858fc39b41564124a2d83e190
parent7a09d2a911494630a22bd0ababdadd6ccecc82c8 (diff)
downloadopenembedded-core-contrib-5cd62c6a0ab4f7c26b5b5fab05415b6503926d8f.tar.gz
python: explicitly disable bluetooth.h check
* bluetooth.h is autodetected from sysroot and influences 2 python files: /usr/include/python2.7/pyconfig-32.h /usr/lib/python2.7/lib-dynload/_socket.so * it doesn't link with bluez, so it wasn't detected by test-dependencies.sh, but still causes undeterministic builds and should be fixed * we can use PACKAGECONFIG, but I don't expect many people to use bt support in python-socket Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--meta/recipes-devtools/python/python.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc
index fcfeda5cbc..9e2e569295 100644
--- a/meta/recipes-devtools/python/python.inc
+++ b/meta/recipes-devtools/python/python.inc
@@ -27,5 +27,6 @@ EXTRA_OECONF = "\
--with-signal-module \
--enable-shared \
--enable-ipv6=${@base_contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \
+ ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no \
${PYTHONLSBOPTS} \
"