mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: sbcl: Simplify 'replace-asdf' phase.
* gnu/packages/lisp.scm (sbcl)[arguments]: Remove unused 'out' variable in 'replace-asdf' phase.
This commit is contained in:
parent
f62982d96d
commit
4354dacede
1 changed files with 1 additions and 2 deletions
|
@ -444,12 +444,11 @@ (define-public sbcl
|
|||
;; of ASDF we use to build software; therefore, replace the contrib
|
||||
;; ASDF with the version packaged into Guix.
|
||||
;; [1] - https://bugs.launchpad.net/sbcl/+bug/1823442
|
||||
(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