diff options
author | Steven Knight <knight@baldmt.com> | 2005-11-19 19:09:16 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-11-19 19:09:16 (GMT) |
commit | e8650ad022a000744e6d676020559e5911accd7d (patch) | |
tree | 3fe85643d4e4c230645ca71dac4b889e32933099 /src | |
parent | bd394d1367a1a754683a6baf56a6320e4eac28a3 (diff) | |
download | SCons-e8650ad022a000744e6d676020559e5911accd7d.zip SCons-e8650ad022a000744e6d676020559e5911accd7d.tar.gz SCons-e8650ad022a000744e6d676020559e5911accd7d.tar.bz2 |
Add /usr/ccs/bin to the default execution PATH on Solaris.
Diffstat (limited to 'src')
-rw-r--r-- | src/CHANGES.txt | 3 | ||||
-rw-r--r-- | src/engine/SCons/Platform/sunos.py | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 1d67c5a..7ae0725 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -392,6 +392,9 @@ RELEASE 0.97 - XXX - On Windows, assume that absolute path names without a drive letter refer to the drive on which the SConstruct file lives. + - Add /usr/ccs/bin to the end of the the default external execution + PATH on Solaris. + From Chen Lee: - Handle Visual Studio project and solution files in Unicode. diff --git a/src/engine/SCons/Platform/sunos.py b/src/engine/SCons/Platform/sunos.py index b2bbb7f..5f4f5ab 100644 --- a/src/engine/SCons/Platform/sunos.py +++ b/src/engine/SCons/Platform/sunos.py @@ -36,5 +36,7 @@ import posix def generate(env): posix.generate(env) - #Based on sunSparc 8:32bit ARG_MAX=1048320 - 3000 for environment expansion + # Based on sunSparc 8:32bit + # ARG_MAX=1048320 - 3000 for environment expansion env['MAXLINELENGTH'] = 1045320 + env['ENV']['PATH'] = env['ENV']['PATH'] + ':/usr/ccs/bin' |