gnu: libunwind: Fix license.
authorPhilip McGrath <philip@philipmcgrath.com>
Mon, 1 Aug 2022 10:55:14 +0000 (06:55 -0400)
committerLudovic Courtès <ludo@gnu.org>
Wed, 3 Aug 2022 15:43:28 +0000 (17:43 +0200)
The license of libunwind is Expat, not X11:
see <https://github.com/libunwind/libunwind/issues/372>.

* gnu/packages/libunwind.scm (libunwind)[license]: Fix it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
gnu/packages/libunwind.scm

index 9eaf26f..03412ed 100644 (file)
@@ -52,4 +52,6 @@ state of each call-frame and to resume execution at any point in the
 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 <https://savannah.nongnu.org/projects/libunwind/>:
+    ;; see <https://github.com/libunwind/libunwind/issues/372>.
+    (license expat)))