~ chicken-core (chicken-5) fff3dec5f69a01205ea27e6498ee0b486d947b24
commit fff3dec5f69a01205ea27e6498ee0b486d947b24 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Tue Nov 13 17:09:58 2018 +0100 Commit: Kooda <kooda@upyum.com> CommitDate: Sun Nov 18 17:38:28 2018 +0100 Resolution of component-dependencies incorrectly ommitted program components. Signed-off-by: Kooda <kooda@upyum.com> diff --git a/egg-compile.scm b/egg-compile.scm index 676afdd9..bff0383e 100644 --- a/egg-compile.scm +++ b/egg-compile.scm @@ -363,7 +363,8 @@ (assq dep cinc) (assq dep scminc) (assq dep genfiles) - (error "unknown component dependency" dep name)))) + (assq dep prgs) + (error "unknown component dependency" dep)))) deps)) ;; collect information (for-each compile info)Trap