guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: minimap2: Fix cond expression for Guile 3 compatibility.


From: guix-commits
Subject: 01/06: gnu: minimap2: Fix cond expression for Guile 3 compatibility.
Date: Thu, 9 Apr 2020 14:06:17 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit bdb56513e7588dbc9c6e3be1526dafb5d8157e49
Author: Marius Bakke <address@hidden>
AuthorDate: Thu Apr 9 00:40:48 2020 +0200

    gnu: minimap2: Fix cond expression for Guile 3 compatibility.
    
    * gnu/packages/bioinformatics.scm (minimap2)[arguments]: Make the last COND
    test the symbol else instead of _.
---
 gnu/packages/bioinformatics.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 943369b..15a5dfb 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -13172,7 +13172,7 @@ version does count multisplits.")
                 ((or (string-prefix? "armhf" system)
                      (string-prefix? "aarch64" system))
                  "arm_neon=1")
-                (_ "sse2only=1"))))
+                (else "sse2only=1"))))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)



reply via email to

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