2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Fix setting of dynamic loader path when on systems that do not use "LD_LIBRARY_PATH". Specifically this fixes the execute tests in MacOS-X, where the dyn loader path var is DYLD_LIBRARY_PATH.

[SVN r28285]
This commit is contained in:
Rene Rivera
2005-04-17 01:30:36 +00:00
parent d9fb658dbb
commit 7c553e33f2

View File

@@ -1740,6 +1740,12 @@ else
.shell-var(LD_LIBRARY_PATH) = PATH ;
}
# Dynamic libraries search path var is loader, and hence system, dependant.
else
{
.shell-var(LD_LIBRARY_PATH) = $(gSHELL_LIBPATH) ;
}
# The names of path variables in the shell
.run-path-shell-vars = [ unique $(.shell-var($(.run-path-vars))) ] ;