summaryrefslogtreecommitdiffstats
path: root/bin/metabuild
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-03-09 18:35:51 -0500
committerColin Walters <walters@verbum.org>2011-03-09 18:35:51 -0500
commit2a0789040d4811cd747fcc7f98c2c73ce3a00b5a (patch)
tree19abf60efff35cf0a9f405adceeb999ed440b36a /bin/metabuild
parent0b5ae71a8d3a082e20c4d570f357c362538eec1f (diff)
downloadhomegit-MOVED-TO-GNOME-2a0789040d4811cd747fcc7f98c2c73ce3a00b5a.tar.gz
homegit-MOVED-TO-GNOME-2a0789040d4811cd747fcc7f98c2c73ce3a00b5a.tar.xz
homegit-MOVED-TO-GNOME-2a0789040d4811cd747fcc7f98c2c73ce3a00b5a.zip
metabuild: Whitelist make errors (apparently *** signals these)
Diffstat (limited to 'bin/metabuild')
-rwxr-xr-xbin/metabuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/metabuild b/bin/metabuild
index b9d3a4b..455d403 100755
--- a/bin/metabuild
+++ b/bin/metabuild
@@ -51,7 +51,7 @@ if os.uname()[0] == 'Linux':
#output_print_timeout_mseconds = 5000
output_print_timeout_mseconds = 0
-warning_re = re.compile(r': ((warning)|(error)|(fatal error)): ')
+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]