From: Michael Lauer Date: Tue, 24 Jul 2007 02:21:23 +0000 (+0000) Subject: classes/distutils.bbclass: back out specifying the include dir, it was a) implicitly... X-Git-Tag: Release-2010-05/1~8868^2~101 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95518b26ac8b1a412ecbaa96823454d34ea10b53;p=openembedded.git classes/distutils.bbclass: back out specifying the include dir, it was a) implicitly specified anyway and b) it breaks builds that add own stuff to it (e.g. '.') --- diff --git a/classes/distutils.bbclass b/classes/distutils.bbclass index c9592bd666..d23c2a3b2e 100644 --- a/classes/distutils.bbclass +++ b/classes/distutils.bbclass @@ -1,9 +1,6 @@ inherit distutils-base distutils_do_compile() { - BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ - ${STAGING_BINDIR_NATIVE}/python setup.py build_ext --include-dirs=${STAGING_INCDIR}/${PYTHON_DIR} || \ - oefatal "python setup.py build_ext execution failed." BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ ${STAGING_BINDIR_NATIVE}/python setup.py build || \ oefatal "python setup.py build_ext execution failed."