]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
build: Only work around Meson 0.63.0 bugs for version 0.63.0
authorSimon McVittie <smcv@collabora.com>
Mon, 12 Sep 2022 18:23:54 +0000 (19:23 +0100)
committerSimon McVittie <smcv@collabora.com>
Mon, 12 Sep 2022 18:23:54 +0000 (19:23 +0100)
mesonbuild/meson#10577 was fixed in 0.63.1.

Signed-off-by: Simon McVittie <smcv@collabora.com>
test/meson.build

index c593a8012478838ac57affc83a29c1970c5f9800..0c9f0afba2da695ef4a97dfc2371889d9d2fc330 100644 (file)
@@ -101,7 +101,7 @@ xdgdir = custom_target('gen-xdgdir',
 
 installed_tests = []
 
-if meson.version().version_compare('>=0.63')
+if meson.version().version_compare('>=0.63') and meson.version().version_compare('<0.63.1')
     # Work around https://github.com/mesonbuild/meson/issues/10577
     test_protocol = 'exitcode'
 else