guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: python-build-system: Change let* to let in


From: guix-commits
Subject: branch core-updates updated: python-build-system: Change let* to let in `site-packages'.
Date: Wed, 18 May 2022 09:06:41 -0400

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 <jgart@dismail.de>
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 <maxim.cournoyer@gmail.com>
---
 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)



reply via email to

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