0

Update master

This commit is contained in:
Ethan Lee
2012-06-17 05:57:57 -03:00
parent 6558f35920
commit 0aae325d8c

View File

@@ -1,4 +1,17 @@
#!/bin/bash #!/bin/bash
# Move to script's directory
cd `dirname $0` cd `dirname $0`
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./
# Get the kernel information
UNAME=`uname`
# Set the proper libpath
if [ "$UNAME" == "Darwin" ]; then
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:./
elif [ "$UNAME" == "Linux" ]; then
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./
fi
# Run it!
java -jar lwjake2.jar $@ java -jar lwjake2.jar $@