diff options
author | Steven Knight <knight@baldmt.com> | 2005-03-10 13:30:11 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-03-10 13:30:11 (GMT) |
commit | 8e8427ffb61b07b95c51a2111453789ef7ebdb17 (patch) | |
tree | 662608b2be4c0f6c14587ec68399171e60ea3c09 /src/engine/SCons/Platform/aix.py | |
parent | fa75a406512ceaea25163150c49b20081d3e1f8c (diff) | |
download | SCons-8e8427ffb61b07b95c51a2111453789ef7ebdb17.zip SCons-8e8427ffb61b07b95c51a2111453789ef7ebdb17.tar.gz SCons-8e8427ffb61b07b95c51a2111453789ef7ebdb17.tar.bz2 |
Add TempFileMunge support to AIX, Cygwin, HP-UX, Linux/UNIX and SunOS. (Leanid Nazdrynau)
Diffstat (limited to 'src/engine/SCons/Platform/aix.py')
-rw-r--r-- | src/engine/SCons/Platform/aix.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine/SCons/Platform/aix.py b/src/engine/SCons/Platform/aix.py index e0d2e76..cc11466 100644 --- a/src/engine/SCons/Platform/aix.py +++ b/src/engine/SCons/Platform/aix.py @@ -57,3 +57,6 @@ def get_xlc(env, xlc, xlc_r, packages): def generate(env): posix.generate(env) + #Based on AIX 5.2: ARG_MAX=24576 - 3000 for environment expansion + env['MAXLINELENGTH'] = 21576 + |