diff options
author | Loren Shih <seraph@lindenlab.com> | 2011-05-20 11:41:28 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2011-05-20 11:41:28 -0400 |
commit | 781addcbc1c7611153ff58fd2f28062a1c4cd041 (patch) | |
tree | cebb3af3706fb6c9690562562201a468c56b97b4 /indra/cmake/run_build_test.py | |
parent | 19a06478d9863c451450b7c9e2f931ba587a3cec (diff) | |
parent | ce248b92d77e781d159f3838b5a2b5ef96360138 (diff) |
Automated merge up from viewer-development into mesh-development
Diffstat (limited to 'indra/cmake/run_build_test.py')
-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__": |