diff options
author | Z572 <[email protected]> | 2023-05-26 18:23:45 +0800 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2023-06-14 23:00:05 +0200 |
commit | 6440b352c92e01aab1756e287a0271ccf0346dff (patch) | |
tree | 6e3fce62ec5e24ce255d37afe9c0eae220a8a4c5 /gnu/packages/linux.scm | |
parent | e4259d4e9e3251e4c4b45d1cce4008ac32b504c8 (diff) |
gnu: libtree: fix building on non-x86 systems.
* gnu/packages/linux.scm (libtree): fix building on non-x86 systems.
[source]: add patch.
* gnu/packages/patches/libtree-fix-check-non-x86.patch: New file.
* gnu/local.mk (dist_path_DATA): Register it.
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6a6cbc118d..c81740a5a1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -73,6 +73,7 @@ ;;; Copyright © 2022, 2023 Demis Balbach <[email protected]> ;;; Copyright © 2023 Bruno Victal <[email protected]> ;;; Copyright © 2023 Yovan Naumovski <[email protected]> +;;; Copyright © 2023 Zheng Junjie <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -9822,6 +9823,7 @@ formats.") (url "https://github.com/haampie/libtree") (commit (string-append "v" version)))) (file-name (git-file-name name version)) + (patches (search-patches "libtree-fix-check-non-x86.patch")) (sha256 (base32 "1jbc60cslzcfxk9jwva51ncr1zl1nz0fkgfjdckgv81is11nswmb")))) (arguments |