From 62de4b4f82a6b5dadc07a04fe3558f1c0111fbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 21 May 2019 12:23:42 -0500 Subject: [PATCH] meson: Bump meson requirement to 0.50.0 We've been using configure_file's `install` property for some time now, but this has been officially supported and works as expected only since meson 0.50, so, bump version to avoid warnings and ensure the behavior is the one we want. https://gitlab.gnome.org/GNOME/mutter/merge_requests/585 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9d600377f..0c57cb6b4 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('mutter', 'c', version: '3.33.1', - meson_version: '>= 0.48.0', + meson_version: '>= 0.50.0', license: 'GPLv2+' )