diff options
-rw-r--r-- | gnu/packages/hurd.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index fc47ee9d97..d48facb004 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -126,7 +126,9 @@ communication.") #:configure-flags '(;; Pretend we're on GNU/Hurd; 'configure' wants ;; that. - "--build=i686-pc-gnu" + ,@(if (%current-target-system) + '() + '("--host=i586-pc-gnu")) ;; Reduce set of dependencies. "--without-parted") |