~ruther/guix-local

7ca97fae366b5ac8324a774d8aa09c2a36348666 — Leo Famulari 9 years ago 123c0ff
gnu: lvm2: Make sure compiled objects are stripped.

* gnu/packages/linux.scm (lvm2)[arguments]: Add 'make-objects-writeable' phase.
1 files changed, 11 insertions(+), 1 deletions(-)

M gnu/packages/linux.scm
M gnu/packages/linux.scm => gnu/packages/linux.scm +11 -1
@@ 1671,7 1671,17 @@ time.")

             ;; Replace /bin/sh with the right file name.
             (patch-makefile-SHELL "make.tmpl")
             #t)))
             #t))
         (add-before 'strip 'make-objects-writable
           (lambda* (#:key outputs #:allow-other-keys)
             ;; Make compiled objects writable so they can be stripped.
             (let ((out (assoc-ref outputs "out")))
               (for-each (lambda (file)
                           (chmod file #o755))
                         (append
                           (find-files (string-append out "/lib"))
                           (find-files (string-append out "/sbin"))))
               #t))))

       #:configure-flags (list (string-append "--sysconfdir="
                                              (assoc-ref %outputs "out")