Fix bug on Chicken with multiple libraries
This commit is contained in:
parent
c1189c0e76
commit
5427fdc5e3
|
@ -88,7 +88,8 @@
|
||||||
(string-append "-uses "
|
(string-append "-uses "
|
||||||
(if (string-starts-with? library-file "srfi")
|
(if (string-starts-with? library-file "srfi")
|
||||||
(string-replace (string-cut-from-end library-file 4) #\/ #\-)
|
(string-replace (string-cut-from-end library-file 4) #\/ #\-)
|
||||||
(string-replace (string-cut-from-end library-file 4) #\/ #\.))))
|
(string-replace (string-cut-from-end library-file 4) #\/ #\.))
|
||||||
|
" "))
|
||||||
library-files)
|
library-files)
|
||||||
" "
|
" "
|
||||||
"-output-file"
|
"-output-file"
|
||||||
|
|
Loading…
Reference in New Issue