~ chicken-core (chicken-5) 752539dd4ca211f732ddcfb71da5b16a30c087a8
commit 752539dd4ca211f732ddcfb71da5b16a30c087a8 Author: Mario Domenech Goulart <mario@parenteses.org> AuthorDate: Sun Jun 18 20:09:02 2017 +0200 Commit: Evan Hanson <evhan@foldling.org> CommitDate: Wed Jun 21 12:52:28 2017 +1200 egg-compile.scm: fix output filename when installing programs b45930ff accidentally clobbered a change made by 9a7d2ea3, causing `program' forms that don't specify `install-name' to install programs as `#f' in the filesystem. Signed-off-by: Evan Hanson <evhan@foldling.org> diff --git a/egg-compile.scm b/egg-compile.scm index 33a4af22..6e6810a2 100644 --- a/egg-compile.scm +++ b/egg-compile.scm @@ -265,7 +265,7 @@ (set! prgs (cons (list target dependencies: deps source: src options: opts link-options: lopts linkage: link custom: cbuild - mode: mode output-file: oname) + mode: mode output-file: rtarget) prgs))))))) (define (compile-extension/program info) (case (car info)Trap