From 6df4905286b665b9eb671c45efd18677e51325d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 20 Oct 2024 23:14:33 +0200 Subject: [PATCH] build: Use SPDX identifier for license Meson strongly recommends to use SPDX identifiers for the license string, and there's no reason for us to not do so. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index efd69755..cab14421 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project('gnome-shell-extensions', version: '47.0', meson_version: '>= 1.1.0', - license: 'GPL2+' + license: 'GPL-2.0-or-later' ) gettext_domain = meson.project_name()