diff options
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 152b070c67..7fbe840aad 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -639,7 +639,9 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." (name "mes-minimal") (native-inputs (list guile-3.0)) (arguments - `(#:system "i686-linux" + `(#:system ,(match (%current-system) + ((or "i686-linux" "x86_64-linux") "i686-linux") + ((or "armhf-linux" "aarch64-linux") "armhf-linux")) #:strip-binaries? #f #:configure-flags '("--mes") #:phases |