Fixing up some Linux stuff.

This commit is contained in:
David A. Mellis 2010-11-27 19:50:33 +01:00
parent 00a9f99c9b
commit c6d1baa275
2 changed files with 3 additions and 3 deletions

View File

@ -314,7 +314,7 @@
<target name="linux-run" depends="linux-build"
description="Run Linux version">
<exec executable="./arduino" dir="linux/work" spawn="false"/>
<exec executable="./linux/work/arduino" spawn="false"/>
</target>
<target name="linux-dist" depends="linux-build"

View File

@ -10,11 +10,11 @@ for LIB in \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
CLASSPATH="${CLASSPATH}:${LIB}"
done
export CLASSPATH
LD_LIBRARY_PATH=`pwd`/lib:${LD_LIBRARY_PATH}
LD_LIBRARY_PATH=`pwd`/lib:/usr/lib/jni${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
export PATH="${APPDIR}/java/bin:${PATH}"