From f62982d96d1ee51a0ae47c171a6cfda6efa36c78 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Sat, 5 Dec 2020 10:11:38 +0100 Subject: [PATCH] gnu: ecl: Simplify 'replace-asdf' phase. * gnu/packages/lisp.scm (ecl)[arguments]: Remove unused 'out' variable in 'replace-asdf' phase. --- gnu/packages/lisp.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 2ec4da8fbb..a540174c88 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -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))