guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: build-system: asdf: Remove %build-inputs reference.


From: guix-commits
Subject: 03/03: build-system: asdf: Remove %build-inputs reference.
Date: Thu, 29 Jul 2021 04:25:38 -0400 (EDT)

mothacehe pushed a commit to branch core-updates
in repository guix.

commit c0a8ba55b6f0ca274db716e5dac66fb4b8235080
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Wed Jul 28 15:53:26 2021 +0200

    build-system: asdf: Remove %build-inputs reference.
    
    This is a follow-up of 7d873f194ca69d6096d28d7a224ab78e83e34fe1 that removes
    the %build-inputs variable.
    
    * guix/build-system/asdf.scm (asdf-build): Remove %build-inputs reference.
---
 guix/build-system/asdf.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/guix/build-system/asdf.scm b/guix/build-system/asdf.scm
index 79de2ee..f043e6a 100644
--- a/guix/build-system/asdf.scm
+++ b/guix/build-system/asdf.scm
@@ -295,9 +295,9 @@ set up using CL source package conventions."
       (with-imported-modules imported-modules
         #~(begin
             (use-modules #$@(sexp->gexp modules))
-            (parameterize ((%lisp (string-append
-                                   (assoc-ref %build-inputs #$lisp-type)
-                                   "/bin/" #$lisp-type))
+            (parameterize ((%lisp (search-input-file
+                                   #$(input-tuples->gexp inputs)
+                                   (string-append "bin/" #$lisp-type)))
                            (%lisp-type #$lisp-type))
               (asdf-build #:name #$name
                           #:source #+source



reply via email to

[Prev in Thread] Current Thread [Next in Thread]