]> git.proxmox.com Git - mirror_qemu.git/commit - configure
configure: fix detection of gdbus-codegen
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 5 May 2021 14:15:34 +0000 (10:15 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 12 May 2021 08:06:50 +0000 (04:06 -0400)
commit5ecfb76ccc056eb6127e44268e475827ae73b9e0
treeab24b3c6ba8cac288e34abb23a47c168b279c4a5
parent941a4736d2b465be1d6429415f8b1f26e2167585
configure: fix detection of gdbus-codegen

"pkg-config --variable=gdbus_codegen gio-2.0" returns "gdbus-codegen",
and it does not pass test -x (which does not walk the path).

Meson 0.58.0 notices that something is iffy, as the dbus_vmstate1
assignment in tests/qtest/meson.build uses an empty string as the
command, and fails very eloquently:

../tests/qtest/meson.build:92:2: ERROR: No program name specified.

Use the "has" function instead of test -x, and fix the generation
of config-host.mak since meson.build expects that GDBUS_CODEGEN
is absent, rather than empty, if the tool is unavailable.

Reported-by: Sebastian Mitterle <smitterl@redhat.com>
Fixes: #178
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
configure