diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-11-04 00:09:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-11-04 00:12:20 +0100 |
commit | f856fcb558eb59f9bb0d4b0651bd7508370321f4 (patch) | |
tree | be5b1abd5c7d80a8ab842eb4d7826575319680be /guix/build-system/python.scm | |
parent | 32728adb958560268b793b4a3e48d94111b5ed2d (diff) |
build-system/python: 'package-with-python2' preserves source location.
* guix/build-system/python.scm (package-with-explicit-python): Add
'location' field.
Diffstat (limited to 'guix/build-system/python.scm')
-rw-r--r-- | guix/build-system/python.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm index 1a5d9df473..2532210a49 100644 --- a/guix/build-system/python.scm +++ b/guix/build-system/python.scm @@ -92,6 +92,7 @@ NEW-PREFIX; otherwise, NEW-PREFIX is prepended to the name." (if (eq? (package-build-system p) python-build-system) (package (inherit p) + (location (package-location p)) (name (let ((name (package-name p))) (string-append new-prefix (if (string-prefix? old-prefix name) |