| Index: client/tools/buildbot_annotated_steps.py
|
| ===================================================================
|
| --- client/tools/buildbot_annotated_steps.py (revision 2319)
|
| +++ client/tools/buildbot_annotated_steps.py (working copy)
|
| @@ -165,7 +165,11 @@
|
| cmds = [sys.executable, toolsBuildScript,
|
| '--mode=' + mode, '--revision=' + version,
|
| '--name=' + name, '--out=' + outdir]
|
| - return subprocess.call(cmds)
|
| + local_env = os.environ
|
| + if 'linux' in name:
|
| + local_env['JAVA_HOME'] = os.path.join(os.path.expanduser('~'),
|
| + 'jdk1.6.0_25')
|
| + return subprocess.call(cmds, env=local_env)
|
|
|
| def ProcessFrog():
|
| '''
|
|
|