me
/
guix
Archived
1
0
Fork 0

gnu: wrap-python3: Replace assoc-ref call with gexp variable.

* gnu/packages/python.scm (wrap-python3) [arguments]: Replace assoc-ref call
with gexp variable in builder.
master
Maxim Cournoyer 2023-04-14 21:36:49 -04:00
parent ca0e4a4b5e
commit 97e37a8a79
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 3 deletions

View File

@ -639,9 +639,7 @@ for more information.")))
#:builder
#~(begin
(use-modules (guix build utils))
;; TODO: Remove 'assoc-ref' uses on next rebuild cycle.
(let ((bin (string-append (assoc-ref %outputs "out") "/bin"))
(let ((bin (string-append #$output "/bin"))
(python (string-append
;; XXX: '%build-inputs' contains the native
;; Python when cross-compiling.