From d36b882672cc704873f49d4dcc42716d8126fa09 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 21 Dec 1995 17:11:03 +0000 Subject: [PATCH] (init_lread): Add ../lisp (in build dir) to load-path when dumping. --- src/lread.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 9923967c98b..8315b7ac711 100644 --- a/src/lread.c +++ b/src/lread.c @@ -2288,7 +2288,10 @@ init_lread () } } 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 -- 2.39.2