From a9a64c19830ac0fc92bf9eac5d83751df683ff31 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 9 Mar 2022 18:24:09 +0100 Subject: gnu: hurd: Adjust to the transition from "--system" to "gnu.system". This is a followup to 0dc019e19a23fea614be5623360849ab9bc35e74, which inadvertently led the Hurd to fail to boot. * gnu/packages/hurd.scm (hurd)[arguments]: In 'create-runsystem' phase, expect "gnu.system=" instead of "--system=". --- gnu/packages/hurd.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index 65a258bc63..1dcec3ea3c 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015, 2016, 2017 Manolis Fragkiskos Ragkousis -;;; Copyright © 2018, 2020, 2021 Ludovic Courtès +;;; Copyright © 2018, 2020-2022 Ludovic Courtès ;;; Copyright © 2020 Efraim Flashner ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020, 2022 Jan (janneke) Nieuwenhuizen @@ -409,8 +409,8 @@ settrans --create /servers/socket/1 /hurd/pflocal # parse multiboot arguments for i in \"$@\"; do case $i in - (--system=*) - system=${i#--system=} + (gnu.system=*) + system=${i#gnu.system=} ;; esac done -- cgit v1.2.3