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.
This commit is contained in:
Niels De Graef 2025-12-11 23:39:20 +01:00
parent dea6e6b364
commit 12c453f84c

View file

@ -1,6 +1,6 @@
project('geary', [ 'vala', 'c' ], project('geary', [ 'vala', 'c' ],
version: '46.0', version: '46.0',
license: 'LGPL2.1+', license: 'LGPL-2.1-or-later',
meson_version: '>= 0.59', meson_version: '>= 0.59',
) )