summaryrefslogtreecommitdiff
path: root/buildscripts/makealldists.py
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2010-04-13 15:59:32 -0400
committerDwight <dmerriman@gmail.com>2010-04-13 15:59:32 -0400
commite54c7290f5d4e7cba84c2ac6a215913b13ffde95 (patch)
treece627db114931ec63e47e52c027cb4a4468795ac /buildscripts/makealldists.py
parent171a318e9e87e6b4d54d5ea9c44a9714ebfb25eb (diff)
parent2785a5889b8b5fa0ca322ba3ddad7100dd1168a6 (diff)
downloadmongo-e54c7290f5d4e7cba84c2ac6a215913b13ffde95.tar.gz
Merge commit 'origin/master'
Conflicts: SConstruct db/repl.cpp
Diffstat (limited to 'buildscripts/makealldists.py')
-rw-r--r--buildscripts/makealldists.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/makealldists.py b/buildscripts/makealldists.py
index 951ef1afb5e..149d1e51132 100644
--- a/buildscripts/makealldists.py
+++ b/buildscripts/makealldists.py
@@ -143,7 +143,8 @@ def lose(name, logfh, losefh):
def wait(procs, winfh, losefh, winners, losers):
# emit a blank line, so that the buildbot doesn't kill us off
# while waiting for output.
- print ""
+ sys.stdout.write('.')
+ sys.stdout.flush()
try:
(pid, stat) = os.wait()
except OSError, err: