From a152e7e7734ab17389e315a9dcacbcdd234da968 Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Thu, 4 Sep 2003 14:24:16 +0000
Subject: [PATCH] Add /usr/lib/cmucl to the default core search path.  For
 x86/Linux support.  From Adam Warner and Pierre Mai.

---
 general-info/release-19a.txt | 2 ++
 lisp/lisp.c                  | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt
index 44c9a41fe..4d6a8876f 100644
--- a/general-info/release-19a.txt
+++ b/general-info/release-19a.txt
@@ -202,6 +202,8 @@ New in this release:
      - Generational GC (gencgc) available for Sparc/Solaris on an
        experimental basis.  Despite the name and feature, it is not
        conservative. 
+     - Search in /usr/lib/cmucl for the lisp core file as well, to
+       support x86/Linux
 
   * Numerous improvements to the PCL implementation of CLOS:
      - Gerd's PCL has been added, which fixes numerous bugs and ANSI/
diff --git a/lisp/lisp.c b/lisp/lisp.c
index af05379ba..d2fc8c13c 100644
--- a/lisp/lisp.c
+++ b/lisp/lisp.c
@@ -1,7 +1,7 @@
 /*
  * main() entry point for a stand alone lisp image.
  *
- * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.36 2003/08/21 15:26:36 gerd Exp $
+ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.37 2003/09/04 14:22:01 toy Exp $
  *
  */
 
@@ -94,6 +94,7 @@ static char* cmucllib_search_list[] =
     "./../lib/cmucl/lib",
     "./../lib",
     "/usr/local/lib/cmucl/lib",
+    "/usr/lib/cmucl",
     NULL
 };
 
-- 
GitLab