distutils.bbclass: consistency between error message and setup.py's command

setup.py was called with build as argument, but the error message
would report build_ext.

(From OE-Core rev: 898b286b92b031db64c2143e81a79fbb20da481a)

Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mario Domenech Goulart 2015-05-25 15:44:44 -03:00 committed by Richard Purdie
parent 68ffb9a6e8
commit 0420f7f478
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ distutils_do_compile() {
STAGING_LIBDIR=${STAGING_LIBDIR} \
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} setup.py build ${DISTUTILS_BUILD_ARGS} || \
bbfatal "${PYTHON_PN} setup.py build_ext execution failed."
bbfatal "${PYTHON_PN} setup.py build execution failed."
}
distutils_stage_headers() {