From 12c453f84c4d5061daa6f6f1ede62eee72d1f7b0 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Thu, 11 Dec 2025 23:39:20 +0100 Subject: [PATCH] meson: Use SPDX identifier in project license The `license` named argument in Meson's `project` function is supposed to be a SPDX license identifier. "LGPL2.1+" isn't correct here, so replace it with the appropriate SPDX identifier. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index faf51b87..60d34ee6 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('geary', [ 'vala', 'c' ], version: '46.0', - license: 'LGPL2.1+', + license: 'LGPL-2.1-or-later', meson_version: '>= 0.59', )