Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 39e676697cd761f67fdab5f1115ee8bbd708cdbf (plain) (blame)
1
2
3
4
5
6
7
8
9
# Treat this is an example build script
# Please adjust paths as necessary for your build machine

export JAVA_HOME=/opt/java/j2sdk1.4.2_03
export PATH=$JAVA_HOME/bin:$PATH

cd `dirname $0`

java -cp ../org.eclipse.releng.basebuilder/startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner $* 2>&1 | tee build.log

Back to the top