summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdevel/ckmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ckmake b/devel/ckmake
index d8c16773..d16de3a7 100755
--- a/devel/ckmake
+++ b/devel/ckmake
@@ -152,8 +152,8 @@ def process_kernel(num, kset, cmdline_args):
work_dir,
ignore=ignore_patterns('.tmp*', ".git"))
build = '%s/build/' % rel['full_path']
- jobs = '-j%d' % kset.build_jobs
- load = '-l%d' % 50
+ jobs = '-j%d' % (kset.build_jobs / 2)
+ load = '-l%d' % kset.build_jobs
make_args = ['KLIB=%s' % build,
'KLIB_BUILD=%s' % build]
nice = ['ionice', '-c', '3', 'nice', '-n', '20']