guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: gnu: hurd: Adjust to the transition from "--system" to "gnu.syste


From: guix-commits
Subject: 03/08: gnu: hurd: Adjust to the transition from "--system" to "gnu.system".
Date: Wed, 9 Mar 2022 17:39:57 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit a9a64c19830ac0fc92bf9eac5d83751df683ff31
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Mar 9 18:24:09 2022 +0100

    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 
<manolis837@gmail.com>
-;;; Copyright © 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2018, 2020-2022 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2020, 2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]