aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2021-12-14 16:01:40 +0200
committerEfraim Flashner <efraim@flashner.co.il>2021-12-14 18:33:49 +0200
commit08d15a24c90e597f1656c3c0c3dbccf2022517de (patch)
treeb07c0eb095fca8b1692ea9a2295e7fa61aa26b64 /m4
parent046a23e63a738e55c9358c58b5809bbd5f4b009e (diff)
downloadguix-08d15a24c90e597f1656c3c0c3dbccf2022517de.tar
guix-08d15a24c90e597f1656c3c0c3dbccf2022517de.tar.gz
build: Adjust 'courage level' of different systems.
* m4/guix.m4 (GUIX_ASSERT_SUPPORTED_SYSTEM): Add i586-gnu. Move powerpc-linux to unsupported but not needing courage. Add mips64el-linux to unsupported.
Diffstat (limited to 'm4')
-rw-r--r--m4/guix.m47
1 files changed, 5 insertions, 2 deletions
diff --git a/m4/guix.m4 b/m4/guix.m4
index e778a56004..6c8e4f1c85 100644
--- a/m4/guix.m4
+++ b/m4/guix.m4
@@ -1,7 +1,7 @@
dnl GNU Guix --- Functional package management for GNU
dnl Copyright © 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
dnl Copyright © 2014 Mark H Weaver <mhw@netris.org>
-dnl Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
+dnl Copyright © 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
dnl Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
dnl
dnl This file is part of GNU Guix.
@@ -89,7 +89,10 @@ courageous and port the GNU System distribution to it (see
# Currently only Linux-based systems are supported, and only on some
# platforms.
case "$guix_system" in
- x86_64-linux|i686-linux|armhf-linux|aarch64-linux|powerpc64le-linux|powerpc-linux)
+ x86_64-linux|i686-linux|armhf-linux|aarch64-linux|powerpc64le-linux|i586-gnu)
+ ;;
+ mips64el-linux|powerpc-linux)
+ AC_MSG_WARN([building Guix on `$guix_system', which is not supported])
;;
*)
if test "x$guix_courageous" = "xyes"; then