Tweak exec-path in uninstalled case
* src/callproc.c (init_callproc): If running uninstalled, do not include eventual installation libexec directory in exec-path.
This commit is contained in:
parent
b7a015f5e0
commit
cf2e9971ea
1 changed files with 2 additions and 2 deletions
|
@ -1595,12 +1595,12 @@ init_callproc (void)
|
|||
#ifdef HAVE_NS
|
||||
const char *path_exec = ns_exec_path ();
|
||||
#endif
|
||||
/* Running uninstalled, so default to tem rather than PATH_EXEC. */
|
||||
Vexec_path = decode_env_path ("EMACSPATH",
|
||||
#ifdef HAVE_NS
|
||||
path_exec ? path_exec :
|
||||
#endif
|
||||
PATH_EXEC, 0);
|
||||
Vexec_path = Fcons (tem, Vexec_path);
|
||||
SSDATA (tem), 0);
|
||||
Vexec_path = nconc2 (decode_env_path ("PATH", "", 0), Vexec_path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue