summaryrefslogtreecommitdiffstats
path: root/bin/metabuild
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-04-25 20:21:13 -0400
committerColin Walters <walters@verbum.org>2011-04-25 20:21:13 -0400
commitcf3520d61c81cedb7617422ff55ab1092d33560a (patch)
tree98cc4f0172cc610b6d7d1863bd09f514626471cc /bin/metabuild
parent76b6cd94fcf840c88a00be44d14327c9433911ce (diff)
downloadhomegit-MOVED-TO-GNOME-cf3520d61c81cedb7617422ff55ab1092d33560a.tar.gz
homegit-MOVED-TO-GNOME-cf3520d61c81cedb7617422ff55ab1092d33560a.tar.xz
homegit-MOVED-TO-GNOME-cf3520d61c81cedb7617422ff55ab1092d33560a.zip
metabuild: Always enable maintainer mode
Diffstat (limited to 'bin/metabuild')
-rwxr-xr-xbin/metabuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/metabuild b/bin/metabuild
index f5ccec9..8be88e8 100755
--- a/bin/metabuild
+++ b/bin/metabuild
@@ -54,7 +54,8 @@ output_print_timeout_mseconds = 0
warning_re = re.compile(r'(: ((warning)|(error)|(fatal error)): )|(make(\[[0-9]+\])?: \*\*\*)')
output_whitelist_re = re.compile(r'^(make(\[[0-9]+\])?: Entering directory)|(metabuild: )')
default_make_parallel = ['-j', '%d' % (cpu_count() * 6, )]
-configargs = ['--prefix=' + root, '--libdir=' + libdir]
+configargs = ['--prefix=' + root, '--libdir=' + libdir,
+ '--enable-maintainer-mode'] # We default to this because we want to behave like autogen
makeargs = ['make']
target_phase = 'build'