# HG changeset patch # User Karl Heuer # Date 819565863 0 # Node ID c387f71fe4b67e540509dce2a880ae7514b752f4 # Parent 28790743a5a3ab27d07641361467432c25ad52ac (init_lread): Add ../lisp (in build dir) to load-path when dumping. diff -r 28790743a5a3 -r c387f71fe4b6 src/lread.c --- 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