diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-11-25 17:13:56 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-11-25 17:24:54 +0100 |
commit | 3b67942f473bb1ce2257bd89b99259f19561fd4a (patch) | |
tree | bb759ec976d6ab0be90f1a96ca0045a370156954 | |
parent | 8be1cd022843e5235ad145a0f014e29ba4412a99 (diff) |
REMOVEME gnu: commencement: diffutils-boot0: Undo effect of diffutils patch.
XXX Avoid a world rebuild at this time.
For any and all *-boot0 packages that have #:tests? #f we should re-consider
inheriting (their phases) from base.scm.
* gnu/packages/commencement.scm (diffutils-boot0)[arguments]: When building
for the 64bit Hurd, restore `skip-tests' to previous value.
Change-Id: I383be67bb537c73e2eaae2b396488e444e0e2260
-rw-r--r-- | gnu/packages/commencement.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 4368893f4d..864c326122 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2021,7 +2021,17 @@ exec " gcc "/bin/" program ;; bootstrap environment. Disable dependency tracking to work ;; around it. `(cons "--disable-dependency-tracking" ,flags)) - (_ flags)))))))) + (_ flags))) + ;; XXX REMOVEME, avoiding world rebuild at this time + ((#:phases phases '%standard-phases) + (if (system-hurd64?) + `(modify-phases %standard-phases + (add-after 'unpack 'skip-tests + (lambda _ + (substitute* "tests/large-subopt" + (("^#!.*" all) + (string-append all "exit 77;\n")))))) + phases))))))) (define findutils-boot0 (package |