summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-06-16 23:55:31 +0200
committerLudovic Courtès <ludo@gnu.org>2022-06-16 23:57:40 +0200
commitc8e393ffe23529ab27225cd2e48eedc2c2c3d0ca (patch)
tree1f4a525ffa54c80a6b836b7f58207aaf80cdd51f
parentab82dd3f58d7dfd88511705e871e9a41d9185aba (diff)
downloadguix-patches-c8e393ffe23529ab27225cd2e48eedc2c2c3d0ca.tar
guix-patches-c8e393ffe23529ab27225cd2e48eedc2c2c3d0ca.tar.gz
packages: Change the order of %SUPPORTED-SYSTEMS.
Commit 2a34333d0c238fa0983659ea71f0e1af4ff0ac7b led to a couple of test failures in tests/packages.scm and tests/lint.scm due to the different ordering. * guix/packages.scm (%supported-systems): Move %64BIT-SUPPORTED-SYSTEMS first.
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 715a6397ed..94e464cd01 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -414,7 +414,7 @@ from forcing GEXP-PROMISE."
(define %supported-systems
;; This is the list of system types that are supported. By default, we
;; expect all packages to build successfully here.
- (append %32bit-supported-systems %64bit-supported-systems))
+ (append %64bit-supported-systems %32bit-supported-systems))
(define %hurd-systems
;; The GNU/Hurd systems for which support is being developed.