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.
parent
a041bbb4bf
commit
5f7c714c63
|
@ -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"))
|
||||||
|
|
Reference in New Issue