[jhbuild] Fix bug causing jobs to run in parallel erroneously



commit 1c55b4562afc119a62c7ccc91ea3fe83018db7f9
Author: Adam Dingle <adam yorba org>
Date:   Wed May 8 07:29:27 2013 -0400

    Fix bug causing jobs to run in parallel erroneously
    
    https://bugzilla.gnome.org/show_bug.cgi?id=699928

 jhbuild/modtypes/__init__.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/jhbuild/modtypes/__init__.py b/jhbuild/modtypes/__init__.py
index 2f68e27..58ca6a1 100644
--- a/jhbuild/modtypes/__init__.py
+++ b/jhbuild/modtypes/__init__.py
@@ -508,7 +508,7 @@ class MakeModule(Package):
         self.makefile = makefile
 
     def get_makeargs(self, buildscript, add_parallel=True):
-        makeargs = '%s %s' % (self.makeargs,
+        makeargs = ' %s %s' % (self.makeargs,
                               self.config.module_makeargs.get(
                                   self.name, self.config.makeargs))
         if self.supports_parallel_build and add_parallel:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]