aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Seikel2011-01-18 09:09:41 +1000
committerDavid Seikel2011-01-18 09:09:41 +1000
commit024efaf73fdbf356752076cc77905f786eea71ea (patch)
tree0ddbe410df71e2c31ff67f9d7e8a2cf29a7f8805
parentLinux build scripts. (diff)
downloadmeta-impy-024efaf73fdbf356752076cc77905f786eea71ea.zip
meta-impy-024efaf73fdbf356752076cc77905f786eea71ea.tar.gz
meta-impy-024efaf73fdbf356752076cc77905f786eea71ea.tar.bz2
meta-impy-024efaf73fdbf356752076cc77905f786eea71ea.tar.xz
Just a temporary hack, to make sure make -j does not get a ridiculously large number. Only affects linux builders. I'll fix it properly later, after I learn python.
-rwxr-xr-xlinden/indra/develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/develop.py b/linden/indra/develop.py
index e804374..6fe565e 100755
--- a/linden/indra/develop.py
+++ b/linden/indra/develop.py
@@ -383,7 +383,7 @@ class LinuxSetup(UnixSetup):
383 if hosts == 1 and socket.gethostname().startswith('station'): 383 if hosts == 1 and socket.gethostname().startswith('station'):
384 hosts, job_count = mk_distcc_hosts() 384 hosts, job_count = mk_distcc_hosts()
385 os.putenv('DISTCC_HOSTS', hosts) 385 os.putenv('DISTCC_HOSTS', hosts)
386 opts.extend(['-j', str(job_count)]) 386 opts.extend(['-j', str(2)])
387 387
388 if targets: 388 if targets:
389 targets = ' '.join(targets) 389 targets = ' '.join(targets)