guix-commits
[Top][All Lists]
Advanced

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

07/07: import: utils: 'specs->package-lists' correctly matches "out".


From: guix-commits
Subject: 07/07: import: utils: 'specs->package-lists' correctly matches "out".
Date: Fri, 7 Jun 2019 17:08:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f54cab2784493f4e9c51d3d7bcd38f155dc0fe7d
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jun 7 22:55:50 2019 +0200

    import: utils: 'specs->package-lists' correctly matches "out".
    
    * guix/import/utils.scm (specs->package-lists): Match "out", not ("out").
---
 guix/import/utils.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/import/utils.scm b/guix/import/utils.scm
index d0dffe9..63fc9bb 100644
--- a/guix/import/utils.scm
+++ b/guix/import/utils.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2018 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2018, 2019 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2016 Jelle Licht <address@hidden>
 ;;; Copyright © 2016 David Craven <address@hidden>
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
@@ -287,7 +287,7 @@ package value."
   (map (lambda (spec)
          (let-values (((pkg out) (specification->package+output spec)))
            (match out
-             (("out") (list (package-name pkg) pkg))
+             ("out" (list (package-name pkg) pkg))
              (_ (list (package-name pkg) pkg out)))))
        specs))
 



reply via email to

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