~ chicken-core (chicken-5) 75e0ccef58ad477c7d7433a8dacdac3e97a66f80
commit 75e0ccef58ad477c7d7433a8dacdac3e97a66f80
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:47:45 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 28c51ae6..48b1cb11 100644
--- a/setup-api.scm
+++ b/setup-api.scm
@@ -441,7 +441,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 before
Trap