diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-31 18:05:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-02 09:30:06 +0100 |
commit | 09917f582aa1a7b752fa96303e06f9f4712a1d86 (patch) | |
tree | cd091c858495b1249b2bb43f69c2103304fbf4de | |
parent | ed5f8bb582453e7d8a1636ad1463380076209bd2 (diff) | |
download | openembedded-core-09917f582aa1a7b752fa96303e06f9f4712a1d86.tar.gz openembedded-core-09917f582aa1a7b752fa96303e06f9f4712a1d86.tar.bz2 openembedded-core-09917f582aa1a7b752fa96303e06f9f4712a1d86.zip |
meson: don't dump full error log on failure
If the configure fails then we don't really want to see hundreds of lines of
test output (this would be similar to dumping out autoconf's config.log). The
error includes the path of the full log if further debugging is required.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/meson.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index 66c44e8bb2..e3b452786d 100644 --- a/meta/classes/meson.bbclass +++ b/meta/classes/meson.bbclass @@ -101,7 +101,6 @@ CONFIGURE_FILES = "meson.build" meson_do_configure() { bbnote Executing meson ${EXTRA_OEMESON}... if ! meson ${MESONOPTS} "${MESON_SOURCEPATH}" "${B}" ${MESON_CROSS_FILE} ${EXTRA_OEMESON}; then - cat ${B}/meson-logs/meson-log.txt bbfatal_log meson failed fi } |