mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
import: utils: 'specs->package-lists' correctly matches "out".
* guix/import/utils.scm (specs->package-lists): Match "out", not ("out").
This commit is contained in:
parent
c0a4db6697
commit
f54cab2784
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2012, 2013, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2012, 2013, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
|
||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
|
@ -287,7 +287,7 @@ (define (specs->package-lists specs)
|
|||
(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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue