diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-06-09 17:07:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-06-11 23:09:08 +0200 |
commit | 865bf63eb3025b978a74805ef0ea8325c97d88e9 (patch) | |
tree | a68ae146a2686c22509a09a14d6c3ab09fe46ebd /gnu/packages/linux.scm | |
parent | 7daf9328921f9f7d4fe4839d8e16091bd9f06072 (diff) | |
download | guix-865bf63eb3025b978a74805ef0ea8325c97d88e9.tar.gz guix-865bf63eb3025b978a74805ef0ea8325c97d88e9.zip |
gnu: e2fsprogs: Fix compilation for GNU/Hurd.
Fixes a regression introduced in
ce78f9cb668971954add5473c8549ebb00424f66.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: When ‘system-hurd?’,
add ‘set-PATH_MAX’ phase.
Change-Id: Idc8c2a24d2518b44e42102db48a8ab484b855f47
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7b639c67ed..ed430f4052 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012-2021, 2021-2023 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012-2021, 2021-2024 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org> @@ -2710,7 +2710,12 @@ module.") (chmod file #o666)) archives))))) ,@(if (system-hurd?) - '((add-after 'unpack 'skip-tests + '((add-after 'unpack 'set-PATH_MAX + (lambda _ + ;; Shamelessly introduce an arbitrary limit. + (substitute* "misc/tune2fs.c" + (("PATH_MAX") "4096")))) + (add-after 'unpack 'skip-tests (lambda _ (with-directory-excursion "tests" (for-each |