From: Tobias Stoeckmann Date: Tue, 13 Jan 2026 17:16:38 +0000 (+0100) Subject: build: Fix license specification X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca9a7f4c5caa228d9af889ecad7dcbe41bd43f2d;p=thirdparty%2Fkmod.git build: Fix license specification The kmod project actually uses LGPL 2.1 or later for libkmod. Clarify this and use proper SPDX license identifier as done in source files. Signed-off-by: Tobias Stoeckmann Reviewed-by: Lucas De Marchi Signed-off-by: Lucas De Marchi --- diff --git a/meson.build b/meson.build index 5740e135..87fb8377 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'kmod', 'c', version : '34', - license : ['LGPLv2.1', 'GPL-2.0-or-later'], + license : ['LGPL-2.1-or-later', 'GPL-2.0-or-later'], meson_version : '>=0.61.0', default_options : [ 'c_std=gnu11',