1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00

* guile-config.in (build-link): Include a -L option in the output

from `guile-config link', indicating where libguile was installed.
This commit is contained in:
Jim Blandy 1998-10-05 18:11:04 +00:00
parent 8b49142f60
commit 008112c14b

View file

@ -110,8 +110,10 @@
(else (cons (car libs) (loop (cdr libs)))))))
;; Don't omit -lguile itself from the list of flags.
(flags (cons "-lguile" flags)))
;; 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))))
;; Display the flags, separated by spaces.
(display-separated flags)