guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: mit-scheme: Match all the system types in 'inputs'.


From: guix-commits
Subject: 02/02: gnu: mit-scheme: Match all the system types in 'inputs'.
Date: Fri, 14 Dec 2018 17:56:03 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 966629a114fd90153784dfdbe5e332e0ac94f1bc
Author: Ludovic Courtès <address@hidden>
Date:   Fri Dec 14 23:39:08 2018 +0100

    gnu: mit-scheme: Match all the system types in 'inputs'.
    
    Fixes a regression introduced in
    d870cc5e8acfed6fee318a66c3ffc7244aa376a1 whereby "guix package -A" on
    one of the non-x86 systems would crash.
    
    * gnu/packages/scheme.scm (mit-scheme)[inputs]: Reintroduce catch-all
    case.
---
 gnu/packages/scheme.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index e8de187..c7ab003 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -171,7 +171,9 @@
                                 ("x86_64-linux"
                                  (string-append version "-x86-64"))
                                 ("i686-linux"
-                                 (string-append version "-i386")))
+                                 (string-append version "-i386"))
+                                (_
+                                 (string-append "c-" version)))
                               ".tar.gz"))
           (sha256
            (match (%current-system)



reply via email to

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