mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: wxwidgets: Set rpath in LDFLAGS.
Fixes <http://bugs.gnu.org/20049>. * gnu/packages/wxwidgets.scm (wxwidgets): Add a make flag to set rpath to $out/lib via LDFLAGS.
This commit is contained in:
parent
9e7594027d
commit
a0a0b7162e
1 changed files with 3 additions and 0 deletions
|
@ -62,6 +62,9 @@ (define-public wxwidgets
|
|||
(arguments
|
||||
'(#:configure-flags
|
||||
'("--with-regex=sys" "--with-libmspack" "--with-sdl")
|
||||
#:make-flags
|
||||
(list (string-append "LDFLAGS=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib"))
|
||||
;; No 'check' target.
|
||||
#:tests? #f))
|
||||
(home-page "https://www.wxwidgets.org/")
|
||||
|
|
Loading…
Reference in a new issue