Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-23 17:40:21 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-23 17:40:21 (GMT)
commit9c186e63e71ea79609d460a03df8327b699c7dbf (patch)
treec0e4c25dd6a13d3e9124cb996f03364dbee17d67 /devbot/build.py
parent7713378c690a85f069b6a8358535682c282b236d (diff)
Add metacity
We need a patch in the latest version for journal
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 78ad400..d6f42fb 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -82,9 +82,12 @@ def build_autotools(module):
jobs = multiprocessing.cpu_count() * 2
- command.run([autogen,
- "--prefix", config.install_dir,
- "--libdir", config.lib_dir])
+ args = [autogen,
+ "--prefix", config.install_dir,
+ "--libdir", config.lib_dir]
+ args.extend(module.options)
+
+ command.run(args)
command.run(["make", "-j", "%d" % jobs])
command.run(["make", "install"])