From 53ca3b9a14110f88c1d81a4b345b3cc17af6ac50 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 17 Feb 2011 22:50:13 +0000 Subject: [PATCH] default to 1 processors on darwin, since we are not going to build anything here anyways. --- osc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/conf.py b/osc/conf.py index 92eef8bd..82e4c129 100644 --- a/osc/conf.py +++ b/osc/conf.py @@ -78,7 +78,7 @@ DEFAULTS = { 'apiurl': 'https://api.opensuse.org', 'build-vmdisk-rootsize': '', # optional for VM builds 'build-vmdisk-swapsize': '', # optional for VM builds - 'build-jobs': os.sysconf('SC_NPROCESSORS_ONLN'), # compile with N jobs + 'build-jobs': os.sysconf('SC_NPROCESSORS_ONLN') if 'Linux' in os.uname() else 1, # compile with N jobs 'builtin_signature_check': '1', # by default use builtin check for verify pkgs 'icecream': '0',