1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 14:21:10 +02:00

(build-link): Include "-lguile-ltdl" in link flags.

This commit is contained in:
Marius Vollmer 2002-10-25 16:41:59 +00:00
parent a069ea8b98
commit 6016d3a754

View file

@ -175,10 +175,10 @@
;; Display the flags, separated by spaces.
(if (or (string=? libdir "/usr/lib")
(string=? libdir "/usr/lib/"))
(display-separated (cons "-lguile" other-flags))
(display-separated (cons "-lguile -lguile-ltdl" other-flags))
(display-separated (cons
(string-append "-L" (get-build-info 'libdir))
(cons "-lguile" other-flags))))
(cons "-lguile -lguile-ltdl" other-flags))))
(newline)))
(define (help-link)