diff options
Diffstat (limited to 'gnu/system/hurd.scm')
-rw-r--r-- | gnu/system/hurd.scm | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm index c9df366f24..1436f7b52c 100644 --- a/gnu/system/hurd.scm +++ b/gnu/system/hurd.scm @@ -64,20 +64,10 @@ ;;; Code: (define %hurd-default-operating-system-kernel - (if (system-hurd?) - gnumach - ;; A cross-built GNUmach does not work - (with-parameters ((%current-system "i686-linux") - (%current-target-system #f)) - gnumach))) + gnumach) (define %hurd64-default-operating-system-kernel - (if (system-hurd?) - gnumach - ;; A cross-built GNUmach does not work - (with-parameters ((%current-system "x86_64-linux") - (%current-target-system #f)) - gnumach))) + %hurd-default-operating-system-kernel) (define %base-packages/hurd ;; Note: the Shepherd comes before the Hurd, not just because its duty is to |