diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-08-01 06:55:14 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-03 17:43:28 +0200 |
commit | bce64b41804432aea96ceb3e49b8b53de58a2d90 (patch) | |
tree | b459c54e288a0169a4e36737eaa6d6601f239b9b /gnu/packages/libunwind.scm | |
parent | 5c585a7ff19f172595f09da9354e4fc540352855 (diff) |
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>
Diffstat (limited to 'gnu/packages/libunwind.scm')
-rw-r--r-- | gnu/packages/libunwind.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 @@ 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))) |