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