From 5bbf7f5c6ceab6e9fd17b1c6f331ec8ecd89cf09 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: (cherry picked from commit 6df4905286b665b9eb671c45efd18677e51325d3) --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8609d9dd..9130b723 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project('gnome-shell-extensions', version: '47.1', meson_version: '>= 1.1.0', - license: 'GPL2+' + license: 'GPL-2.0-or-later' ) gettext_domain = meson.project_name()