~ chicken-core (chicken-5) 1f6345983c64f4dc3f5190412ac129ad43e6fb2a
commit 1f6345983c64f4dc3f5190412ac129ad43e6fb2a Author: Peter Bex <peter@more-magic.net> AuthorDate: Sun Jan 24 13:54:23 2016 +0100 Commit: Peter Bex <peter@more-magic.net> CommitDate: Sun Jan 24 13:54:23 2016 +0100 Fix init-repository: use repo-path instead of prefix This fixes today's massive Salmonella breakage diff --git a/chicken-install.scm b/chicken-install.scm index 8a5a305e..7a30cbcc 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -214,7 +214,7 @@ '())) (define (init-repository dir) - (let ((src (get-prefix)) + (let ((src (repo-path)) (copy (if *windows-shell* "copy" "cp -r")))Trap