Add /usr/ccs/bin to the default execution PATH on Solaris.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sat, 19 Nov 2005 19:09:16 +0000 (19:09 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sat, 19 Nov 2005 19:09:16 +0000 (19:09 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1395 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Platform/sunos.py

index 1d67c5a2bce0a74d49f4f4b9e7e17aabb85967c5..7ae07255a82f5606700041b6daecde43f684c736 100644 (file)
@@ -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.
index b2bbb7f2c01f99e15c74ce104371f5e0ec859927..5f4f5ab06e84ae7679808e8d4494e208d7112469 100644 (file)
@@ -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'