summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2011-05-18 15:33:17 -0400
committerNat Goodspeed <nat@lindenlab.com>2011-05-18 15:33:17 -0400
commit2414417210723842d5b4de86f991db2e391a864c (patch)
treed5938f2c103bceb3bdf6aed04d3e25f3d9a14a08 /indra/cmake
parent03f7063c0b3806729de10a58ac8ec7871bded4cc (diff)
parente9b454f5f938251697e582152ddfeefae5070c87 (diff)
Automated merge with http://hg.secondlife.com/viewer-development
Diffstat (limited to 'indra/cmake')
-rwxr-xr-xindra/cmake/run_build_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/cmake/run_build_test.py b/indra/cmake/run_build_test.py
index 320a9be8ab..ce2d1e0386 100755
--- a/indra/cmake/run_build_test.py
+++ b/indra/cmake/run_build_test.py
@@ -109,6 +109,8 @@ def main(command, libpath=[], vars={}):
os.environ.update(dict([(str(key), str(value)) for key, value in vars.iteritems()]))
# Run the child process.
print "Running: %s" % " ".join(command)
+ # Make sure we see all relevant output *before* child-process output.
+ sys.stdout.flush()
return subprocess.call(command)
if __name__ == "__main__":