Commit 69e0d067 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Preserve the original WINEDLLPATH so we can load out-of-tree Winelib

applications.
parent 15487bca
......@@ -68,7 +68,12 @@ then
else
LD_LIBRARY_PATH="$topdir/libs"
fi
WINEDLLPATH="$topdir/dlls:$topdir/programs"
if [ -n "$WINEDLLPATH" ]
then
WINEDLLPATH="$topdir/dlls:$topdir/programs:$WINEDLLPATH"
else
WINEDLLPATH="$topdir/dlls:$topdir/programs"
fi
WINESERVER="$topdir/server/wineserver"
WINELOADER="$topdir/loader/wine"
export LD_LIBRARY_PATH WINEDLLPATH WINESERVER WINELOADER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment