From 5f7c714c63dd4313dbc0ba466ac73c7fb68966db Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 14 Jul 2023 11:51:18 +0100 Subject: 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 @@ (define (noisy-setenv name value) ((? target-x86-32?) "i386") ((? target-x86-64?) - "amd64"))) + "amd64") + (_ "unknown"))) (toprump (string-append (getcwd) "/buildrump.sh/src/sys/rump")) -- cgit v1.2.3