guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: rumpkernel: Don't error for non x86 systems.


From: guix-commits
Subject: 02/02: gnu: rumpkernel: Don't error for non x86 systems.
Date: Fri, 14 Jul 2023 06:54:21 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 5f7c714c63dd4313dbc0ba466ac73c7fb68966db
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Fri Jul 14 11:51:18 2023 +0100

    gnu: rumpkernel: Don't error for non x86 systems.
    
    As the lack of handling other systems, say aarch64-linux here seemed to 
cause
    problems with guix pull on these systems.  This should work around #64609.
    
    * gnu/packages/hurd.scm (rumpkernel)[arguments]: Don't error for any system.
---
 gnu/packages/hurd.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index 0e47a954d7..3785c47750 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -746,7 +746,8 @@ in userland processes thanks to the DDE layer.")
                                      ((? target-x86-32?)
                                       "i386")
                                      ((? target-x86-64?)
-                                      "amd64")))
+                                      "amd64")
+                                     (_ "unknown")))
                        (toprump (string-append
                                  (getcwd)
                                  "/buildrump.sh/src/sys/rump"))



reply via email to

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