From e5c0887524528285144e03f0ce25d0b5fa848234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 21 Oct 2024 12:27:12 +0200 Subject: [PATCH] build: Use SPDX identifier for license field SPDX has become the established standard for expressing FLOSS licenses, and is what meson itself strongly recommends for the license field. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b8b01c9aa..86d665b1b 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('mutter', 'c', version: '47.0', meson_version: '>= 1.3.0', - license: 'GPLv2+' + license: 'GPL-2.0-or-later', ) split_version = meson.project_version().split('.')