blob: f1cd3d3206ba7c13e291d787736c80ee14031f59 [file] [log] [blame]
david_williams82439602008-01-02 19:28:16 +00001#!/bin/sh
2
david_williams53f9de12008-01-02 19:31:06 +00003# remember to leave no slashes on commonVariations in source command,
4# so that users path is used to find it (first). But, path on
5# commonComputedVariables means we expect to execute only our
david_williams82439602008-01-02 19:28:16 +00006# version
7
david_williams47177032008-01-20 05:23:30 +00008if [ -z $BUILD_INITIALIZED ]
david_williams82439602008-01-02 19:28:16 +00009then
david_williams47177032008-01-20 05:23:30 +000010# if releng_control not set, we assume we are already in releng_control directory
11 if [ -z $RELENG_CONTROL ]
12 then
13 RELENG_CONROL=`pwd`
14 fi
david_williamsf88f05c2008-01-02 21:24:46 +000015 pushd .
16 cd ${RELENG_CONTROL}
david_williams39c5f652008-01-02 07:08:39 +000017 source commonVariations.shsource
18 source ${RELENG_CONTROL}/commonComputedVariables.shsource
david_williamsf88f05c2008-01-02 21:24:46 +000019 popd
david_williams82439602008-01-02 19:28:16 +000020fi
21
david_williams3a3d08b2008-01-03 03:22:26 +000022# For most ant tasks, we want Java 4 to be default,
david_williamsf88f05c2008-01-02 21:24:46 +000023# so if not desired (such as for WTP 2.0 unit tests),
24# then we have to spec Java 5 right there where we run
25# the tests.
26# Note: this must be Java 4, for now, for "customizeAccessRules"
27# to work. I'll recompile it for Java 5 eventually, but it causes
28# a problem, and a problem only on PPC machine/VM.
david_williams4b6a6502008-01-03 00:51:27 +000029export JAVA_HOME=${JAVA_4_HOME}
david_williamsf88f05c2008-01-02 21:24:46 +000030
david_williams82439602008-01-02 19:28:16 +000031
32ANT_CMD=${ANT_HOME}/bin/ant
33
34exec "$ANT_CMD" "$@"
35