blob: 2ea92bbd41e00853cae2b010a5540d797d388aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/meson.build
+++ b/meson.build
@@ -373,7 +373,7 @@
# We don't know the type of prop (bool, string) but need to differentiate
# between a set value (bool) or the fallback value (string), so convert to
# a string and check the string value.
- prop_str = '@0@'.format(prop)
+ prop_str = 'false'
if prop_str in ['true', 'false']
ipc_rmid_deferred_release = (prop_str == 'true')
message('IPC_RMID_DEFERRED_RELEASE:', ipc_rmid_deferred_release)
|