1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +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))))))) (else (cons (car libs) (loop (cdr libs)))))))
;; Don't omit -lguile itself from the list of flags. ;; Include libguile itself in the list, along with the
(flags (cons "-lguile" flags))) ;; directory it was installed in.
(flags (cons (string-append "-L" (get-build-info 'libdir))
(cons "-lguile" flags))))
;; Display the flags, separated by spaces. ;; Display the flags, separated by spaces.
(display-separated flags) (display-separated flags)