diff options
-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' |