diff options
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/python-build-system.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm index aad86258c7..c6c88e6577 100644 --- a/guix/build/python-build-system.scm +++ b/guix/build/python-build-system.scm @@ -167,9 +167,7 @@ "Return the path of the current output's Python site-package." (let* ((out (python-output outputs)) (python (assoc-ref inputs "python"))) - (string-append out "/lib/python" - (python-version python) - "/site-packages/"))) + (string-append out "/lib/python" (python-version python) "/site-packages"))) (define (add-installed-pythonpath inputs outputs) "Prepend the Python site-package of OUTPUT to PYTHONPATH. This is useful |