This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 47fac5dc59 python-build-system: Change let* to let in `site-packages'.
47fac5dc59 is described below
commit 47fac5dc59c481e1ffc442f80e46ad7f8df4965b
Author: jgart <[email protected]>
AuthorDate: Wed May 18 00:57:37 2022 -0400
python-build-system: Change let* to let in `site-packages'.
* guix/build/python-build-system.scm (site-packages): Change let* to let for
readability and since let* is unused.
Signed-off-by: Maxim Cournoyer <[email protected]>
---
guix/build/python-build-system.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/build/python-build-system.scm
b/guix/build/python-build-system.scm
index 08871f60cd..26ba744aca 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -176,8 +176,8 @@ without errors."
(define (site-packages inputs outputs)
"Return the path of the current output's Python site-package."
- (let* ((out (python-output outputs))
- (python (assoc-ref inputs "python")))
+ (let ((out (python-output outputs))
+ (python (assoc-ref inputs "python")))
(string-append out "/lib/python" (python-version python)
"/site-packages")))
(define (add-installed-pythonpath inputs outputs)