[armedbear-cvs] r11660 - trunk/abcl

Erik Huelsmann ehuelsmann at common-lisp.net
Sun Feb 15 21:25:37 UTC 2009


Author: ehuelsmann
Date: Sun Feb 15 21:25:34 2009
New Revision: 11660

Log:
Fix our lisp based build for CLISP 2.47 (and hopefully from there onwards).


Modified:
   trunk/abcl/build-abcl.lisp

Modified: trunk/abcl/build-abcl.lisp
==============================================================================
--- trunk/abcl/build-abcl.lisp	(original)
+++ trunk/abcl/build-abcl.lisp	Sun Feb 15 21:25:34 2009
@@ -106,7 +106,7 @@
         (ext:cd old-directory)))
     (cond ((numberp status)
            status)
-          ((eq status t)
+          ((or (eq status t) (null status)) ;; clisp 2.47 returns NIL on success
            0)
           (t
            -1))))




More information about the armedbear-cvs mailing list