From 024efaf73fdbf356752076cc77905f786eea71ea Mon Sep 17 00:00:00 2001 From: David Seikel Date: Tue, 18 Jan 2011 09:09:41 +1000 Subject: 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. --- linden/indra/develop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): if hosts == 1 and socket.gethostname().startswith('station'): hosts, job_count = mk_distcc_hosts() os.putenv('DISTCC_HOSTS', hosts) - opts.extend(['-j', str(job_count)]) + opts.extend(['-j', str(2)]) if targets: targets = ' '.join(targets) -- cgit v1.1