mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-08 05:27:35 +02:00
fixing argument order in call to library-dependencies
This commit is contained in:
parent
f92586d694
commit
a13d4c49f0
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@
|
||||||
(package-libraries package)))))
|
(package-libraries package)))))
|
||||||
|
|
||||||
(define (package-dependencies impl cfg package)
|
(define (package-dependencies impl cfg package)
|
||||||
(append-map (lambda (lib) (library-dependencies cfg impl lib))
|
(append-map (lambda (lib) (library-dependencies impl cfg lib))
|
||||||
(append (package-libraries package)
|
(append (package-libraries package)
|
||||||
(package-programs package))))
|
(package-programs package))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue