From 7a9253d9ffe1c527f994676d9fce80f5da121d1e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 5 Sep 2023 15:34:02 +1000 Subject: [PATCH] meson.build: correct license to HPND Best explanation: 12-ish years ago when I started libwacom, I copied the license from some X11-related repository assuming it was MIT and went with that. Turns out it's actually the HPND-sell-variant: "Historical Permission Notice and Disclaimer - sell variant" https://spdx.org/licenses/HPND-sell-variant.html No real effects since it's not really that much different to MIT afaict but let's make sure meson prints out the correct SPDX license identifier. Signed-off-by: Peter Hutterer --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 54b3b2e51..462ef3348 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('libwacom', 'c', version: '2.8.0', - license: 'MIT/Expat', + license: 'HPND', default_options: [ 'c_std=gnu99', 'warning_level=2' ], meson_version: '>= 0.51.0')