diff options
author | Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 2021-12-13 22:49:47 +0100 |
---|---|---|
committer | Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 2022-10-15 11:02:31 +0200 |
commit | f9293be58e636f41402751e4c99829561faa1247 (patch) | |
tree | 7ad071abd42ded0779cb7bb49893cb11ba3e2581 | |
parent | a7e7f2909019e5b00734e5316261df097a9549aa (diff) | |
download | guix-f9293be58e636f41402751e4c99829561faa1247.tar.gz |
gnu: bootstrap: mes-minimal: Support ARM, update for mes-0.23.1.
* gnu/packages/make-bootstrap.scm (%mes-minimal): Update for mes-0.23.1. [arguments]: Support armhf-linux, aarch64-linux.
-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 |