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:
Taylan Ulrich Bayırlı/Kammer 2015-04-30 14:29:05 +02:00
parent 9e7594027d
commit a0a0b7162e

View file

@ -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/")