Merge branch 'master' of github.com:arduino/Arduino

This commit is contained in:
David A. Mellis 2010-11-28 23:46:37 -05:00
commit 901319bb7d
2 changed files with 3 additions and 3 deletions

View File

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

View File

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