From bce64b41804432aea96ceb3e49b8b53de58a2d90 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Mon, 1 Aug 2022 06:55:14 -0400 Subject: [PATCH] gnu: libunwind: Fix license. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The license of libunwind is Expat, not X11: see . * gnu/packages/libunwind.scm (libunwind)[license]: Fix it. Signed-off-by: Ludovic Courtès --- gnu/packages/libunwind.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/libunwind.scm b/gnu/packages/libunwind.scm index 9eaf26fca8..03412edd25 100644 --- a/gnu/packages/libunwind.scm +++ b/gnu/packages/libunwind.scm @@ -52,4 +52,6 @@ (define-public libunwind call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications.") - (license x11))) + ;; Do not believe : + ;; see . + (license expat)))