guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: bootstrap: Add missing 'supported-systems', remove extra 'ma


From: guix-commits
Subject: 01/01: gnu: bootstrap: Add missing 'supported-systems', remove extra 'match'.
Date: Mon, 24 Dec 2018 20:18:39 -0500 (EST)

civodul pushed a commit to branch core-updates
in repository guix.

commit 0b07f22728488f2f85624b716e5398bbb3a4165d
Author: Ludovic Courtès <address@hidden>
Date:   Tue Dec 25 02:16:25 2018 +0100

    gnu: bootstrap: Add missing 'supported-systems', remove extra 'match'.
    
    Previously evaluation would fail for armhf, aarch64, and mips64el.
    
    * gnu/packages/bootstrap.scm (%bootstrap-mescc-tools)[supported-systems]:
    New field.
    (%bootstrap-mes)[supported-systems]: New field.
    [inputs]: Remove 'match' form on %current-system, which would fail on
    non-Intel platforms.
---
 gnu/packages/bootstrap.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 72e3d08..d9570a3 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -659,6 +659,7 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
     (synopsis "Bootstrap binaries of MesCC Tools")
     (description synopsis)
     (home-page #f)
+    (supported-systems '("i686-linux" "x86_64-linux"))
     (license gpl3+)))
 
 (define %bootstrap-mes
@@ -702,10 +703,9 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
                         "mes-minimal-stripped-0.19-i686-linux.tar.xz")
                   %bootstrap-base-urls))
             (sha256
-             (match (%current-system)
-               ((or "i686-linux" "x86_64-linux")
-                (base32
-                 
"0k7kkl68a6xaadv47ij0nr9jm5ca1ffj38n7f2lg80y72wdkwr9h")))))))))
+             (base32
+              "0k7kkl68a6xaadv47ij0nr9jm5ca1ffj38n7f2lg80y72wdkwr9h")))))))
+    (supported-systems '("i686-linux" "x86_64-linux"))
     (synopsis "Bootstrap binaries of Mes")
     (description synopsis)
     (home-page #f)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]