From a7c66cf938605f95c9a00fa9950c40c26f45cb73 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Sat, 19 Nov 2005 19:09:16 +0000 Subject: [PATCH] Add /usr/ccs/bin to the default execution PATH on Solaris. git-svn-id: http://scons.tigris.org/svn/scons/trunk@1395 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- 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 1d67c5a2..7ae07255 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 b2bbb7f2..5f4f5ab0 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' -- 2.26.2