diff options
author | Mario Domenech Goulart <mario@ossystems.com.br> | 2015-05-25 15:44:44 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-03 16:35:31 +0100 |
commit | 898b286b92b031db64c2143e81a79fbb20da481a (patch) | |
tree | dabda8f4d4a8cbd70ce1b15f9e317c80c28894b0 /meta/classes/distutils.bbclass | |
parent | 1cac4dea1dd4a335752539feefc72372fb78a41d (diff) | |
download | openembedded-core-898b286b92b031db64c2143e81a79fbb20da481a.tar.gz openembedded-core-898b286b92b031db64c2143e81a79fbb20da481a.tar.bz2 openembedded-core-898b286b92b031db64c2143e81a79fbb20da481a.zip |
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 <mario@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/distutils.bbclass')
-rw-r--r-- | meta/classes/distutils.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |