gnu: elfutils: Add $libdir to the RUNPATH of binaries.

* gnu/packages/elf.scm (elfutils)[arguments]: New field.
This commit is contained in:
Ludovic Courtès 2015-04-11 17:08:27 +02:00
parent cc1e1b38c9
commit 13cc689ae8
1 changed files with 7 additions and 0 deletions

View File

@ -48,6 +48,13 @@
(outputs '("out" ; libelf.so, elfutils/*.h, etc.
"bin")) ; ld, nm, objdump, etc.
(arguments
;; Programs don't have libelf.so in their RUNPATH and libraries don't
;; know where to find each other.
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
(assoc-ref %outputs "out")
"/lib"))))
(native-inputs `(("m4" ,m4)))
(inputs `(("zlib" ,zlib)))
(home-page "https://fedorahosted.org/elfutils/")