diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt
index 44c9a41fe02c7c21d3fb49739fea2a192cfbc77a..4d6a8876f0d05c39b241a170ab5bbd1e53425630 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 af05379bae450eb2aaadb3a228e474eb5caabc84..d2fc8c13ceafdfcab10ac01059601b7d73b5556d 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
 };