aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Dunn <robin@alldunn.com>2013-05-30 18:56:14 -0700
committerRobin Dunn <robin@alldunn.com>2013-05-30 18:56:14 -0700
commit4033ef9fbcbf11344d0866683fc1e9c2fc282e22 (patch)
tree441db4f26072d16392810a5c38a7350bf231b723
parentbc5c6a48f7d749ce05b37e8ce8662efd11f1816b (diff)
Oops, we need to actually use OPTION_JOBS too.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 11f9eb71c..33daad13a 100644
--- a/setup.py
+++ b/setup.py
@@ -559,7 +559,7 @@ class pyside_build(_build):
raise DistutilsSetupError("Error configuring " + extension)
log.info("Compiling module %s..." % extension)
- if run_process([self.make_path], log) != 0:
+ if run_process([self.make_path, OPTION_JOBS], log) != 0:
raise DistutilsSetupError("Error compiling " + extension)
if extension.lower() == "shiboken":