mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
* guile-config.in (build-link): Really reverted the change of
2001-03-05.
This commit is contained in:
parent
7566791171
commit
e96452c4e4
2 changed files with 30 additions and 25 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-03-07 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
|
||||||
|
|
||||||
|
* guile-config.in (build-link): Really reverted the change of
|
||||||
|
2001-03-05.
|
||||||
|
|
||||||
2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
* guile-config.in (build-link): Reverted the previous patch.
|
* guile-config.in (build-link): Reverted the previous patch.
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
(string-append program-name
|
(string-append program-name
|
||||||
" link: arguments to subcommand not yet implemented")))
|
" link: arguments to subcommand not yet implemented")))
|
||||||
|
|
||||||
(let ((flags
|
(let* ((flags
|
||||||
(let loop ((libs
|
(let loop ((libs
|
||||||
;; Get the string of linker flags we used to build
|
;; Get the string of linker flags we used to build
|
||||||
;; Guile, and break it up into a list.
|
;; Guile, and break it up into a list.
|
||||||
|
@ -160,16 +160,16 @@
|
||||||
;; Remove any empty strings that may have seeped in there.
|
;; Remove any empty strings that may have seeped in there.
|
||||||
((string=? (car libs) "") (loop (cdr libs)))
|
((string=? (car libs) "") (loop (cdr libs)))
|
||||||
|
|
||||||
(else (cons (car libs) (loop (cdr libs))))))))
|
(else (cons (car libs) (loop (cdr libs)))))))
|
||||||
|
|
||||||
;; Include libguile itself in the list, along with the
|
;; Include libguile itself in the list, along with the
|
||||||
;; directory it was installed in.
|
;; directory it was installed in.
|
||||||
(let (flags (cons (string-append "-L" (get-build-info 'libdir))
|
(flags (cons (string-append "-L" (get-build-info 'libdir))
|
||||||
(cons "-lguile" flags)))
|
(cons "-lguile" flags))))
|
||||||
|
|
||||||
;; Display the flags, separated by spaces.
|
;; Display the flags, separated by spaces.
|
||||||
(display-separated flags)
|
(display-separated flags)
|
||||||
(newline))))
|
(newline)))
|
||||||
|
|
||||||
(define (help-link)
|
(define (help-link)
|
||||||
(let ((dle display-line-error))
|
(let ((dle display-line-error))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue