diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-07-28 15:53:26 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-07-29 10:25:21 +0200 |
commit | c0a8ba55b6f0ca274db716e5dac66fb4b8235080 (patch) | |
tree | 070de3e129ab1231e36f858177d1fc8c3eb9b973 | |
parent | c56df3b9465b19b61c102019f599caf8303143a9 (diff) |
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.
-rw-r--r-- | guix/build-system/asdf.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/build-system/asdf.scm b/guix/build-system/asdf.scm index 79de2ee5ba..f043e6a7a2 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 |