changeset 13772:c387f71fe4b6

(init_lread): Add ../lisp (in build dir) to load-path when dumping.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 17:11:03 +0000
parents 28790743a5a3
children 7d50ac085b12
files src/lread.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lread.c	Thu Dec 21 17:10:27 1995 +0000
+++ b/src/lread.c	Thu Dec 21 17:11:03 1995 +0000
@@ -2288,7 +2288,10 @@
 	}
     }
   else
-    Vload_path = decode_env_path (0, normal);
+    /* ../lisp refers to the build directory.
+       NORMAL refers to the lisp dir in the source directory.  */
+    Vload_path = Fcons (build_string ("../lisp"),
+				      decode_env_path (0, normal));
 #endif
 
 #ifndef WINDOWSNT