me
/
guix
Archived
1
0
Fork 0

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.
Christopher Baines 2023-07-14 11:51:18 +01:00
parent a041bbb4bf
commit 5f7c714c63
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 2 additions and 1 deletions

View File

@ -746,7 +746,8 @@ in userland processes thanks to the DDE layer.")
((? target-x86-32?) ((? target-x86-32?)
"i386") "i386")
((? target-x86-64?) ((? target-x86-64?)
"amd64"))) "amd64")
(_ "unknown")))
(toprump (string-append (toprump (string-append
(getcwd) (getcwd)
"/buildrump.sh/src/sys/rump")) "/buildrump.sh/src/sys/rump"))