diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-27 15:18:48 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-11-02 15:57:28 +0100 |
| commit | 6638cae5f65c5f6fb312ef6f1635b29d2fd056aa (patch) | |
| tree | f6d217e4134badb0beee509d931060b1bf503e6c /configure | |
| parent | fccec5ce171b66850b5882488a64d6ffd1131d2e (diff) | |
| download | focaccia-qemu-6638cae5f65c5f6fb312ef6f1635b29d2fd056aa.tar.gz focaccia-qemu-6638cae5f65c5f6fb312ef6f1635b29d2fd056aa.zip | |
meson: bump submodule to 0.59.3
This gains some bugfixes, especially: - it fixes the introspection of array options. While technically we still support Meson 0.58.2, this issue only appears when adding a new option and not if the user is just building QEMU. In the relatively rare case of a contributor using --meson to point to a 0.58 version, review can catch spurious changes to scripts/meson-buildoptions.sh easily. - it fixes "meson test" when it is not the process group leader. Make is the process group leader when "make check" invokes "meson test", so this is a requirement for using it as a test harness. Tested-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index c0018a304f..73af9a7b30 100755 --- a/configure +++ b/configure @@ -1500,7 +1500,7 @@ python_version=$($python -c 'import sys; print("%d.%d.%d" % (sys.version_info[0] python="$python -B" if test -z "$meson"; then - if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.59.2; then + if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.59.3; then meson=meson elif test $git_submodules_action != 'ignore' ; then meson=git |