~ chicken-core (chicken-5) d72c0b240a4992f8987575107e834bcccda1cdca
commit d72c0b240a4992f8987575107e834bcccda1cdca Author: Mario Domenech Goulart <mario@parenteses.org> AuthorDate: Sat Sep 1 08:45:01 2018 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Sun Sep 2 13:36:25 2018 +0200 Allow `files' in the toplevel of egg description files The toplevel `files' form is not actually used by chicken-install, but by henrietta-cache. henrietta-cache uses the `files' form to determine what to cache. Fixes #1511. Signed-off-by: felix <felix@call-with-current-continuation.org> diff --git a/chicken-install.scm b/chicken-install.scm index 5d66a77c..ae292111 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -177,7 +177,7 @@ (platform #t #f #f) (installed-files #t #f #f ,list?) (maintainer #t #f #f) - (files #f #f #f ,list?) + (files #t #f #f ,list?) (source #f #f #f) (csc-options #f #f #f) (link-options #f #f #f)Trap