From: Jordan Justen Date: Tue, 17 Aug 2021 09:11:10 +0000 (-0700) Subject: meson: Check that bin/meson_get_version.py ran without an error X-Git-Tag: upstream/22.3.5~19103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf23fbb040f15e0b035e8d5ba90761a7d5418e68;p=platform%2Fupstream%2Fmesa.git meson: Check that bin/meson_get_version.py ran without an error According to https://mesonbuild.com/Reference-manual.html, the check parameter is supported since meson 0.47.0. This could have helped to catch the issue fixed by: 221871fb6da ("meson: Search for python3 before python for bin/meson_get_version.py") as it would have caused the build to fail immediately. It's still a good idea to check the result even though that issue is now fixed. Signed-off-by: Jordan Justen Reviewed-by: Eric Engestrom Part-of: --- diff --git a/meson.build b/meson.build index 08667a8..2106094 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,8 @@ project( 'mesa', ['c', 'cpp'], version : run_command( - [find_program('python3', 'python'), 'bin/meson_get_version.py'] + [find_program('python3', 'python'), 'bin/meson_get_version.py'], + check : true ).stdout(), license : 'MIT', meson_version : '>= 0.52',