[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: wxwidgets: Set rpath in LDFLAGS.
From: |
Taylan Ulrich B. |
Subject: |
01/01: gnu: wxwidgets: Set rpath in LDFLAGS. |
Date: |
Thu, 30 Apr 2015 13:36:16 +0000 |
taylanub pushed a commit to branch core-updates
in repository guix.
commit a0a0b7162e497bf064eb06c07efd5da4cf95dbe2
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
Date: Thu Apr 30 14:29:05 2015 +0200
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.
---
gnu/packages/wxwidgets.scm | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 1f80130..ee270ff 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -62,6 +62,9 @@
(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/")