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: lucaceresoli/bug-15201-perf-libtraceevent-missing~30184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=898b286b92b031db64c2143e81a79fbb20da481a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 6ed7ecc99ff..c0bb573cf84 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() {