1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

* guile-config.in (build-link): Include a -R flag in the output

from link.  Not sure if this is the right thing to do.
This commit is contained in:
Jim Blandy 1998-10-06 22:00:13 +00:00
parent 8d3ac4c998
commit bc08dbdb3a

View file

@ -123,7 +123,8 @@
;; Include libguile itself in the list, along with the
;; directory it was installed in.
(flags (cons (string-append "-L" (get-build-info 'libdir))
(cons "-lguile" flags))))
(cons (string-append "-R" (get-build-info 'libdir))
(cons "-lguile" flags)))))
;; Display the flags, separated by spaces.
(display-separated flags)