[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: sbcl: Simplify 'replace-asdf' phase.
From: |
guix-commits |
Subject: |
05/07: gnu: sbcl: Simplify 'replace-asdf' phase. |
Date: |
Sat, 5 Dec 2020 10:04:50 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 4354dacede0bb7ca73c68594753bc973ff6ca653
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Dec 5 10:22:42 2020 +0100
gnu: sbcl: Simplify 'replace-asdf' phase.
* gnu/packages/lisp.scm (sbcl)[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 a540174..3d44629 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -444,12 +444,11 @@ an interpreter, a compiler, a debugger, and much more.")
;; 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))
- branch master updated (1ab631d -> cebfb29), guix-commits, 2020/12/05
- 02/07: gnu: ccl: Use system ASDF instead of bundled one., guix-commits, 2020/12/05
- 01/07: gnu: cl-asdf: Improve priorities of configuration file search., guix-commits, 2020/12/05
- 04/07: gnu: ecl: Simplify 'replace-asdf' phase., guix-commits, 2020/12/05
- 05/07: gnu: sbcl: Simplify 'replace-asdf' phase.,
guix-commits <=
- 03/07: gnu: clisp: Use system ASDF instead of bundled one., guix-commits, 2020/12/05
- 06/07: gnu: Add cl-log., guix-commits, 2020/12/05
- 07/07: gnu: Add zs3., guix-commits, 2020/12/05