~ chicken-core (chicken-5) 5d2ac6203df36c927923a9b279f8449ea213f2a9
commit 5d2ac6203df36c927923a9b279f8449ea213f2a9 Author: Christian Kellermann <ckeen@pestilenz.org> AuthorDate: Tue Oct 6 20:47:45 2015 +0200 Commit: Christian Kellermann <ckeen@pestilenz.org> CommitDate: Tue Oct 6 20:50:22 2015 +0200 Remove bogus and in cond case This cleans up the change introduced by "Avoid adding runtime prefix on destination prefix". diff --git a/setup-api.scm b/setup-api.scm index 62883657..4c679ba8 100644 --- a/setup-api.scm +++ b/setup-api.scm @@ -454,7 +454,7 @@ (equal? (pathname-extension to) "a")) (run (,*ranlib-command* ,(shellpath to)) ) )) (cond ((deployment-mode) f) - ((and (not (equal? (destination-prefix) (runtime-prefix)))) + ((not (equal? (destination-prefix) (runtime-prefix))) ;; we did not append a prefix already (target-prefix to)) ;; There's been destination-prefix added beforeTrap