python3: Fix QA warning

Addresses the warning:

WARNING: QA Issue: python3-native: configure was passed unrecognised options: --with-wctype-functions

since this option was removed in python 3.

(From OE-Core rev: f2879f3831ac86018e9526e34815f99eafe1ba82)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2014-02-28 11:24:01 +00:00
parent ce43612998
commit 3f0e3b5d53
2 changed files with 6 additions and 0 deletions

View File

@@ -51,6 +51,9 @@ EXTRA_OEMAKE = '\
ARCH=${TARGET_ARCH} \
'
# No ctypes option for python 3
PYTHONLSBOPTS = ""
do_configure_prepend() {
autoreconf --verbose --install --force --exclude=autopoint Modules/_ctypes/libffi || bbnote "_ctypes failed to autoreconf"
}