diff options
author | Andrew <forkk@forkk.net> | 2013-10-01 16:47:59 -0500 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-10-01 16:47:59 -0500 |
commit | 7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37 (patch) | |
tree | d43be4ea3ecec09024208531d83af09965beaeac /package | |
parent | 349553349c7fdee93f72bcfbb44630f4cf2ae9c3 (diff) | |
download | MultiMC-7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37.tar MultiMC-7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37.tar.gz MultiMC-7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37.tar.lz MultiMC-7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37.tar.xz MultiMC-7b863f97f7c4e45ab617a57e2f4e84fb8fc4ed37.zip |
Set run script to load libs from bin folder.
I'd really like to put them in a separate "lib" folder, but CMake
doesn't want to.
Diffstat (limited to 'package')
-rwxr-xr-x | package/linux/MultiMC | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/linux/MultiMC b/package/linux/MultiMC index d9f9dd5d..6e77a632 100755 --- a/package/linux/MultiMC +++ b/package/linux/MultiMC @@ -5,7 +5,7 @@ MMC_DIR="$( cd "$( dirname "$0" )" && pwd )" cd "${MMC_DIR}" echo "MultiMC Dir: ${MMC_DIR}" -export LD_LIBRARY_PATH="${MMC_DIR}/lib":$LD_LIBRARY_PATH +export LD_LIBRARY_PATH="${MMC_DIR}/bin":$LD_LIBRARY_PATH export QT_PLUGIN_PATH="${MMC_DIR}/plugins" export QT_FONTPATH="${MMC_DIR}/fonts" exec ${MMC_DIR}/bin/MultiMC -d ${MMC_DIR} $@ |