From e8650ad022a000744e6d676020559e5911accd7d Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Sat, 19 Nov 2005 19:09:16 +0000 Subject: Add /usr/ccs/bin to the default execution PATH on Solaris. --- src/CHANGES.txt | 3 +++ src/engine/SCons/Platform/sunos.py | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) 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' -- cgit v0.12