gnu: Python: use /nix/.../sh instead of /bin/sh in the subprocess module
* gnu/packages/python.scm (python-2): patch Lib/subprocess.py to use /nix/.../sh.
This commit is contained in:
parent
b10ab7230f
commit
70318b4672
|
@ -139,7 +139,15 @@
|
||||||
(with-directory-excursion out
|
(with-directory-excursion out
|
||||||
(for-each (cut augment-rpath <> lib)
|
(for-each (cut augment-rpath <> lib)
|
||||||
(find-files "bin" ".*")))))
|
(find-files "bin" ".*")))))
|
||||||
%standard-phases)))
|
(alist-replace
|
||||||
|
'configure
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys #:rest args)
|
||||||
|
(let ((configure (assoc-ref %standard-phases 'configure)))
|
||||||
|
(substitute* "Lib/subprocess.py"
|
||||||
|
(("args = \\[\"/bin/sh")
|
||||||
|
(string-append "args = [\"" (which "sh"))))
|
||||||
|
(apply configure args)))
|
||||||
|
%standard-phases))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bzip2" ,bzip2)
|
`(("bzip2" ,bzip2)
|
||||||
("gdbm" ,gdbm)
|
("gdbm" ,gdbm)
|
||||||
|
|
Loading…
Reference in New Issue