From 48c7e71cd7c3690203d4a8961a651cae090af83f Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 2 Jun 2023 15:44:55 +0200 Subject: gnu: gcc-boot0: Do not use 'coreutils-boot0' on GNU/Hurd. Fixes . Reported by Janneke Nieuwenhuizen . * gnu/packages/commencement.scm (gcc-boot0)[source]: Use '%bootstrap-coreutils&co' when on GNU/Hurd. --- gnu/packages/commencement.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 78cfa4acd0..7c7c11c174 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2333,7 +2333,12 @@ exec " gcc "/bin/" program ;; names, which cannot be repacked by BOOTSTRAP-ORIGIN. Nor ;; can it be deleted from Guile, so resort to this evil hack. #$(origin-snippet (package-source gcc)) - (system* #$(file-append coreutils-boot0 "/bin/rm") "-rf" + (system* #$(file-append (let-system system + ;; 'coreutils-boot0' is Linux-only. + (if (target-hurd? system) + %bootstrap-coreutils&co + coreutils-boot0)) + "/bin/rm") "-rf" "gcc/testsuite/go.test/test/fixedbugs/issue27836.dir")))))) (arguments (cons* -- cgit v1.2.3