diff options
author | Andrew Okin <forkk@forkk.net> | 2013-02-12 12:49:13 -0600 |
---|---|---|
committer | Andrew Okin <forkk@forkk.net> | 2013-02-12 12:49:13 -0600 |
commit | 4c5d19a62a7914a8ce77bde4824708d586334108 (patch) | |
tree | 5f528eeb9127e5b00b14a3481cf516548dead72e /package | |
parent | 397c0cb5559768e38f15700f1ed155dd06f35bc8 (diff) | |
download | MultiMC-4c5d19a62a7914a8ce77bde4824708d586334108.tar MultiMC-4c5d19a62a7914a8ce77bde4824708d586334108.tar.gz MultiMC-4c5d19a62a7914a8ce77bde4824708d586334108.tar.lz MultiMC-4c5d19a62a7914a8ce77bde4824708d586334108.tar.xz MultiMC-4c5d19a62a7914a8ce77bde4824708d586334108.zip |
Fixed Linux install / package support in CMakeLists. Fixed Linux start script.
Diffstat (limited to 'package')
-rwxr-xr-x | package/linux/MultiMC | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/linux/MultiMC b/package/linux/MultiMC index 20ecb6d1..235d17c5 100755 --- a/package/linux/MultiMC +++ b/package/linux/MultiMC @@ -1,8 +1,9 @@ #!/bin/sh # Basic start script for running MultiMC with the libs packaged with it. -MMC_DIR = $(dirname "$0") +MMC_DIR=$(dirname "$0") cd "${MMC_DIR}" export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./lib" +export QT_PLUGIN_PATH=$QT_PLUGIN_PATH:"." exec ./bin/MultiMC |