Skip to content

Commit

Permalink
Builder|Mac OS X: Run make in parallel processes
Browse files Browse the repository at this point in the history
Should speed up the build a little on the Mac builders.
  • Loading branch information
skyjake committed Mar 22, 2013
1 parent ae5bf84 commit a56b8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/platform_release.py
Expand Up @@ -202,7 +202,7 @@ def mac_release():
remkdir(MAC_WORK_DIR)
os.chdir(MAC_WORK_DIR)
if os.system('qmake -r -spec macx-g++ CONFIG+=release DENG_BUILD=%s ' % (DOOMSDAY_BUILD_NUMBER) +
'../doomsday/doomsday.pro && make -w'):
'../doomsday/doomsday.pro && make -j2 -w'):
raise Exception("Failed to build from source.")

# Now we can proceed to packaging.
Expand Down

0 comments on commit a56b8f6

Please sign in to comment.