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:
parent
8b49142f60
commit
008112c14b
1 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue