mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 08:30:56 +01:00
9 lines
234 B
Python
9 lines
234 B
Python
|
# -*- mode: python; -*-
|
||
|
|
||
|
# General utility functions live in this file.
|
||
|
|
||
|
def print_build_failures():
|
||
|
from SCons.Script import GetBuildFailures
|
||
|
for bf in GetBuildFailures():
|
||
|
print "%s failed: %s" % (bf.node, bf.errstr)
|