diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-01-04 18:20:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-06 16:30:01 +0000 |
commit | 46fc4d6b7c17e19088917ec46234bafc76f5655f (patch) | |
tree | d25a7ff4a1bac661d6d0f012e3c1f4e504719d91 /meta/recipes-devtools/python/python.inc | |
parent | f795ea31eb9f607c772f8969f34b2e3c3aa2bd23 (diff) | |
download | openembedded-core-46fc4d6b7c17e19088917ec46234bafc76f5655f.tar.gz openembedded-core-46fc4d6b7c17e19088917ec46234bafc76f5655f.tar.bz2 openembedded-core-46fc4d6b7c17e19088917ec46234bafc76f5655f.zip |
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python.inc')
-rw-r--r-- | meta/recipes-devtools/python/python.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc index 4991b975f4..5a0766520c 100644 --- a/meta/recipes-devtools/python/python.inc +++ b/meta/recipes-devtools/python/python.inc @@ -26,5 +26,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} \ " |