diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-05-24 16:08:36 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-05-24 16:08:36 -0400 |
commit | a8470df2c433d2ce0376dde4f1a54b46ba9b01d7 (patch) | |
tree | 8f05bd3512209d0e4b0f189d4e4f95f06c622514 /indra/cmake | |
parent | 10c45691c7c48557f183cc9686f6a5c13c21a29d (diff) | |
parent | 79131e8a480ab3611ce739717ed84c6ad76aa234 (diff) |
merge
Diffstat (limited to 'indra/cmake')
-rwxr-xr-x | indra/cmake/run_build_test.py | 2 |
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__": |