diff options
author | William Deegan <bill@baddogconsulting.com> | 2023-05-03 20:41:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 20:41:15 -0700 |
commit | 4997bbda807ebdbcd11b1282981c3abb81dd8ee1 (patch) | |
tree | 6199e98610c76c39efe59a4dc6e91d31e5a13e96 /SCons/Platform/hpux.py | |
parent | 4c835c49219361b08f03b71d1f944e2e74f23545 (diff) | |
parent | 84859d565216af998f817e05d0696f3423bb7216 (diff) | |
download | scons-git-4997bbda807ebdbcd11b1282981c3abb81dd8ee1.tar.gz |
Merge branch 'master' into bug/msys-python
Diffstat (limited to 'SCons/Platform/hpux.py')
-rw-r--r-- | SCons/Platform/hpux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Platform/hpux.py b/SCons/Platform/hpux.py index 642f1feff..9d796db39 100644 --- a/SCons/Platform/hpux.py +++ b/SCons/Platform/hpux.py @@ -30,7 +30,7 @@ selection method. from . import posix -def generate(env): +def generate(env) -> None: posix.generate(env) #Based on HP-UX11i: ARG_MAX=2048000 - 3000 for environment expansion env['MAXLINELENGTH'] = 2045000 |