mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
build-system/composer: Do not try to delete-duplicates.
* guix/build-system/composer.scm (create-autoload): Do not use the delete-duplicates function, stale code that should have been removed in an earlier cleanup. Change-Id: I778c1cfba7ef8de16a1ba297b583595b391b7e00 Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
050565f4b6
commit
e24d9a36f2
1 changed files with 5 additions and 7 deletions
|
@ -191,13 +191,11 @@ (define* (create-autoload vendor composer-file inputs #:key dev-dependencies?)
|
|||
(cons* (string-join (string-split key #\\) "\\\\")
|
||||
(append-map (lambda (v) (list vendor v)) vals)))))
|
||||
(_ (format #t "")))
|
||||
(delete-duplicates
|
||||
(append
|
||||
(composer-autoload-psr-4 autoload)
|
||||
(if (and dev-dependencies? (not (null? autoload-dev)))
|
||||
(composer-autoload-psr-4 autoload-dev)
|
||||
'()))
|
||||
'()))
|
||||
(append
|
||||
(composer-autoload-psr-4 autoload)
|
||||
(if (and dev-dependencies? (not (null? autoload-dev)))
|
||||
(composer-autoload-psr-4 autoload-dev)
|
||||
'())))
|
||||
(for-each
|
||||
(lambda (psr0)
|
||||
(match psr0
|
||||
|
|
Loading…
Reference in a new issue