1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: libunwind: Fix license.

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>
This commit is contained in:
Philip McGrath
2022-08-01 06:55:14 -04:00
committed by Ludovic Courtès
parent 5c585a7ff1
commit bce64b4180

View 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)))