GH-1069 env hack/passthhrough for LD_PRELOAD and LD_LIBRARY_PATH

This commit is contained in:
Petr Mrázek
2015-06-12 09:40:41 +02:00
parent b427a652ad
commit f723721bd0
2 changed files with 19 additions and 3 deletions

View File

@ -17,8 +17,11 @@ fi
MMC_DIR="$(dirname "$(readlink -f "$0")")"
echo "MultiMC Dir: ${MMC_DIR}"
# Set up env
export LD_LIBRARY_PATH="${MMC_DIR}/bin":$LD_LIBRARY_PATH
# Set up env - filter out input LD_ variables but pass them in under different names
export GAME_LIBRARY_PATH=$LD_LIBRARY_PATH
export GAME_PRELOAD=$LD_PRELOAD
export LD_LIBRARY_PATH="${MMC_DIR}/bin":$MMC_LIBRARY_PATH
export LD_PRELOAD=$MMC_PRELOAD
export QT_PLUGIN_PATH="${MMC_DIR}/plugins"
export QT_FONTPATH="${MMC_DIR}/fonts"