summaryrefslogtreecommitdiff
path: root/gnu/packages/make-bootstrap.scm
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2023-06-17 13:51:05 +0200
committerJanneke Nieuwenhuizen <janneke@gnu.org>2023-06-17 14:38:32 +0200
commitff690faf66d8f37ee6b679fcb7cf37e369624ee3 (patch)
tree3d6ab4ebded5a48f349ca5701643699e178481b4 /gnu/packages/make-bootstrap.scm
parent52f2980fa3feaf6e59b9e5144391faf8feb52a87 (diff)
gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?.
* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r--gnu/packages/make-bootstrap.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 6bafc5697c8..7b40f395f31 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -3,7 +3,7 @@
3;;; Copyright © 2017, 2021 Efraim Flashner <efraim@flashner.co.il> 3;;; Copyright © 2017, 2021 Efraim Flashner <efraim@flashner.co.il>
4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> 4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
5;;; Copyright © 2018, 2019 Mark H Weaver <mhw@netris.org> 5;;; Copyright © 2018, 2019 Mark H Weaver <mhw@netris.org>
6;;; Copyright © 2018, 2019, 2021, 2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> 6;;; Copyright © 2018, 2019, 2021, 2022, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
7;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org> 7;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
8;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com> 8;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
9;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com> 9;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
@@ -626,7 +626,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
626 #~("AR=gcc-ar" "RANLIB=gcc-ranlib") 626 #~("AR=gcc-ar" "RANLIB=gcc-ranlib")
627 #~()) 627 #~())
628 628
629 #$@(if (hurd-target?) 629 #$@(if (target-hurd?)
630 #~("--disable-jit") 630 #~("--disable-jit")
631 #~()))) 631 #~())))
632 ((#:phases phases '%standard-phases) 632 ((#:phases phases '%standard-phases)