From: Mario Domenech Goulart Date: Mon, 25 May 2015 18:44:44 +0000 (-0300) Subject: distutils.bbclass: consistency between error message and setup.py's command X-Git-Tag: 2015-10~1671 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=898b286b92b031db64c2143e81a79fbb20da481a;p=openembedded-core.git 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. Signed-off-by: Mario Domenech Goulart Signed-off-by: Ross Burton --- diff --git a/meta/classes/distutils.bbclass b/meta/classes/distutils.bbclass index 6ed7ecc99f..c0bb573cf8 100644 --- a/meta/classes/distutils.bbclass +++ b/meta/classes/distutils.bbclass @@ -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() {