mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-23 12:00:21 +02:00
extra-dependencies go before boot-dependencies
* module/scripts/jslink.scm (link-file): psyntax needs to come last in the list of dependencies, so need to append extra-dependencies before boot-dependencies
This commit is contained in:
parent
37369c0cb0
commit
c7554f2746
1 changed files with 2 additions and 1 deletions
|
@ -103,7 +103,8 @@ Report bugs to <~A>.~%"
|
||||||
(define* (link-file file #:key (extra-dependencies '()) output-file no-boot?)
|
(define* (link-file file #:key (extra-dependencies '()) output-file no-boot?)
|
||||||
(let ((dependencies (if no-boot?
|
(let ((dependencies (if no-boot?
|
||||||
extra-dependencies
|
extra-dependencies
|
||||||
(append boot-dependencies extra-dependencies)))
|
;; FIXME: extra-dependencies need to come before psyntax
|
||||||
|
(append extra-dependencies boot-dependencies)))
|
||||||
(output-file (or output-file "main.js")) ;; FIXME: changeable
|
(output-file (or output-file "main.js")) ;; FIXME: changeable
|
||||||
)
|
)
|
||||||
(with-output-to-file output-file
|
(with-output-to-file output-file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue