mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: ecl: Simplify 'replace-asdf' phase.
* gnu/packages/lisp.scm (ecl)[arguments]: Remove unused 'out' variable in 'replace-asdf' phase.
This commit is contained in:
parent
c32a7b3485
commit
f62982d96d
1 changed files with 1 additions and 2 deletions
|
@ -250,12 +250,11 @@ (define-public ecl
|
|||
(delete 'check)
|
||||
(add-after 'unpack 'replace-asdf
|
||||
;; Use system ASDF instead of bundled one.
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let* ((cl-asdf (assoc-ref inputs "cl-asdf"))
|
||||
(guix-asdf (string-append
|
||||
cl-asdf
|
||||
"/share/common-lisp/source/asdf/asdf.lisp"))
|
||||
(out (string-append (assoc-ref outputs "out")))
|
||||
(contrib-asdf "contrib/asdf/asdf.lisp"))
|
||||
(copy-file guix-asdf contrib-asdf))
|
||||
#t))
|
||||
|
|
Loading…
Reference in a new issue