~ chicken-core (chicken-5) 455b210a56c7b0b88598f376b567c9fbe6acf38e
commit 455b210a56c7b0b88598f376b567c9fbe6acf38e Author: felix <felix@call-with-current-continuation.org> AuthorDate: Sun May 2 02:17:43 2010 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Sun May 2 02:17:43 2010 +0200 library name fix for -deploy diff --git a/csc.scm b/csc.scm index f5edc063..f5808bdc 100644 --- a/csc.scm +++ b/csc.scm @@ -937,7 +937,7 @@ EOF "libchicken" (cond (osx "dylib") (win "dll") - (else (conc "so." BINARY_VERSION)))))) + (else "so"))))) (copy-files lib targetdir))) (define (copy-files from to)Trap