gnu: Python: Avoid needless reference on coreutils.
* gnu/packages/python.scm (python-2.7)[arguments]: Pass "INSTALL" and "MKDIR_P" in <#:configure-flags>.master
parent
4f5fe46388
commit
fcb5493793
|
@ -143,6 +143,12 @@
|
||||||
"--with-system-ffi" ;build ctypes
|
"--with-system-ffi" ;build ctypes
|
||||||
"--with-ensurepip=install" ;install pip and setuptools
|
"--with-ensurepip=install" ;install pip and setuptools
|
||||||
"--enable-unicode=ucs4"
|
"--enable-unicode=ucs4"
|
||||||
|
|
||||||
|
;; Prevent the installed _sysconfigdata.py from retaining a reference
|
||||||
|
;; to coreutils.
|
||||||
|
"INSTALL=install -c"
|
||||||
|
"MKDIR_P=mkdir -p"
|
||||||
|
|
||||||
(string-append "LDFLAGS=-Wl,-rpath="
|
(string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out") "/lib"))
|
(assoc-ref %outputs "out") "/lib"))
|
||||||
;; With no -j argument tests use all available cpus, so provide one.
|
;; With no -j argument tests use all available cpus, so provide one.
|
||||||
|
|
Reference in New Issue