gnu: bigloo: Add RUNPATH to the libraries.

* gnu/packages/scheme.scm (bigloo)[arguments]: Pass --ldflags
  'configure' flag.
This commit is contained in:
Ludovic Courtès 2015-04-16 22:22:45 +02:00
parent 1a189da0e7
commit f0ad3c7697

View file

@ -188,7 +188,10 @@ (define-public bigloo
;; <http://article.gmane.org/gmane.lisp.scheme.bigloo/6126>.
;; "--customgc=no" ; use our libgc
(string-append"--mv=" (which "mv"))
(string-append "--rm=" (which "rm"))))))
(string-append "--rm=" (which "rm"))
(string-append "--ldflags=-Wl,-rpath="
(assoc-ref outputs "out")
"/lib/bigloo/" ,version)))))
(alist-cons-after
'install 'install-emacs-modes
(lambda* (#:key outputs #:allow-other-keys)