diff options
| author | fergus.henderson <fergushenderson@users.noreply.github.com> | 2008-08-01 03:42:03 +0000 |
|---|---|---|
| committer | fergus.henderson <fergushenderson@users.noreply.github.com> | 2008-08-01 03:42:03 +0000 |
| commit | 2d0599c817b03db231ddfec550100261e602ea03 (patch) | |
| tree | a462e11411221d710aff0a4a5168c1426cd6a951 /include_server | |
| parent | 534f3e7f647422b71ebad9917c303851d445587b (diff) | |
| download | distcc-git-2d0599c817b03db231ddfec550100261e602ea03.tar.gz | |
Increase MAX_COMPONENTS_IN_SERVER_ROOT from 10 to 20.
It turns out that our own test infrastructure (test/testdistcc.py)
sets TMPDIR before invoking distccd, so this needs to be reasonably
high, otherwise 'make distcheck' will fail.
Diffstat (limited to 'include_server')
| -rwxr-xr-x | include_server/basics.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include_server/basics.py b/include_server/basics.py index c3c23d6..0854aa5 100755 --- a/include_server/basics.py +++ b/include_server/basics.py @@ -156,7 +156,10 @@ class ClientRootKeeper(object): # on the client machine. Normally the server root is /tmp/distccd_XXXXXX. # But it could be something different if TMPDIR is set when distccd is # started. See dcc_get_tmp_top() in ../src/tempfile.c. -MAX_COMPONENTS_IN_SERVER_ROOT = 10 +# It turns out that our own test infrastructure (test/testdistcc.py) +# sets TMPDIR before invoking distccd, so this needs to be reasonably +# high, otherwise 'make distcheck' will fail. +MAX_COMPONENTS_IN_SERVER_ROOT = 20 # EMAILS |
