diff options
author | Christian Goetze <cg@lindenlab.com> | 2009-05-14 20:56:03 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2009-05-14 20:56:03 +0000 |
commit | 65c86eadcb954b85bc40ea4ea8300d80c0927521 (patch) | |
tree | 905aed0b325954ebe2210e98f578db31b532421b | |
parent | 32100098f59e7598f8399b319f1bab8df6827ef0 (diff) |
Max out distcc jobs to 12 in develop.py
-rwxr-xr-x | indra/develop.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/develop.py b/indra/develop.py index ce12b33103..dfc658edec 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -391,6 +391,8 @@ class LinuxSetup(UnixSetup): if hostname.startswith('eniac'): hosts, job_count = mk_distcc_hosts('eniac', 71) os.putenv('DISTCC_HOSTS', hosts) + if job_count > 12: + job_count = 12; opts.extend(['-j', str(job_count)]) if targets: |