gnu: python: Make sure shared libraries are stripped.
* gnu/packages/python.scm (python-2)[arguments]: Add 'make-libraries-writable' phase.
This commit is contained in:
parent
9ffe61b0ee
commit
216c283b0a
|
@ -223,6 +223,15 @@
|
||||||
file))))))
|
file))))))
|
||||||
(call-with-output-file "__init__.py" (const #t))
|
(call-with-output-file "__init__.py" (const #t))
|
||||||
#t)))))))
|
#t)))))))
|
||||||
|
(add-before 'strip 'make-libraries-writable
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
;; Make .so files writable so they can be stripped.
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(for-each (lambda (file)
|
||||||
|
(chmod file #o755))
|
||||||
|
(find-files (string-append out "/lib")
|
||||||
|
"\\.so"))
|
||||||
|
#t)))
|
||||||
(add-after 'install 'move-tk-inter
|
(add-after 'install 'move-tk-inter
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
;; When Tkinter support is built move it to a separate output so
|
;; When Tkinter support is built move it to a separate output so
|
||||||
|
|
Loading…
Reference in New Issue