[armedbear-cvs] r11676 - trunk/abcl/src/org/armedbear/lisp

Erik Huelsmann ehuelsmann at common-lisp.net
Sat Feb 21 19:14:51 UTC 2009


Author: ehuelsmann
Date: Sat Feb 21 19:14:48 2009
New Revision: 11676

Log:
If we can't locate the lisp home location, fall back on a system property to specify it.

Note: this change helps to implement out-of-tree Lisp-based builds.

Modified:
   trunk/abcl/src/org/armedbear/lisp/Site.java

Modified: trunk/abcl/src/org/armedbear/lisp/Site.java
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/Site.java	(original)
+++ trunk/abcl/src/org/armedbear/lisp/Site.java	Sat Feb 21 19:14:48 2009
@@ -56,7 +56,8 @@
                     }
                 }
             }
-        }
+        } else
+            lispHome = System.getProperty("abcl.home");
         LISP_HOME = lispHome;
     }
 




More information about the armedbear-cvs mailing list