[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/4 v2] gnu: Python: use /nix/.../sh instead of /bin/sh in the su
From: |
Cyril Roelandt |
Subject: |
[PATCH 2/4 v2] gnu: Python: use /nix/.../sh instead of /bin/sh in the subprocess module |
Date: |
Sat, 22 Mar 2014 04:36:16 +0100 |
* gnu/packages/python.scm (python-2): patch Lib/subprocess.py to use
/nix/.../sh.
---
gnu/packages/python.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 056956e..2c69926 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -139,7 +139,15 @@
(with-directory-excursion out
(for-each (cut augment-rpath <> lib)
(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
`(("bzip2" ,bzip2)
("gdbm" ,gdbm)
--
1.8.4.rc3
[PATCH 2/5] gnu: Python: use /nix/.../sh if /bin/sh cannot be found, Cyril Roelandt, 2014/03/06
[PATCH 1/5] gnu: Enable the 'ctypes' module in Python., Cyril Roelandt, 2014/03/06
[PATCH 5/5] gnu: remove python-fix-dbm.patch, Cyril Roelandt, 2014/03/06
[PATCH 4/5] gnu: Python: bump to 3.3.4, Cyril Roelandt, 2014/03/06