2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

@R use -j7 with make

This commit is contained in:
bebbo
2016-11-30 23:49:01 +01:00
parent b2056dab4a
commit f3f83b9246

View File

@ -458,7 +458,7 @@ def make(name, target=None, makefile=None, **makevars):
info('running make "%s"', target)
with cwd(path.join('{build}', name)):
args = ['%s=%s' % item for item in makevars.items()]
args = ['%s=%s' % item for item in makevars.items()] + ["-j7"]
if target is not None:
args = [target] + args
if makefile is not None: