summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-03-31 14:45:26 +0100
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-04-01 11:19:56 +0100
commit3bdabb5ae6652f7932301a4472a3d409661c9fb6 (patch)
tree11c4de313f4ba56b61ca5d3564fe7fec6af85d01
parent447231f27d0a4e4fb0320b0f13e64d9f27e208f0 (diff)
downloadmorph-3bdabb5ae6652f7932301a4472a3d409661c9fb6.tar.gz
Use larger buffer in _relay_exec_output
-rwxr-xr-xdistbuild-helper2
1 files changed, 1 insertions, 1 deletions
diff --git a/distbuild-helper b/distbuild-helper
index 9d70642e..7399fb59 100755
--- a/distbuild-helper
+++ b/distbuild-helper
@@ -212,7 +212,7 @@ class HelperMachine(distbuild.StateMachine):
def _relay_exec_output(self, event_source, event):
distbuild.crash_point()
- buf_size = 64
+ buf_size = 16 * 1024
fd = event.file.fileno()
data = os.read(fd, buf_size)
if data: