Fixes for the AIX C and C++ Tool specifications. (Vincent Risi)
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 3 Nov 2003 18:20:36 +0000 (18:20 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 3 Nov 2003 18:20:36 +0000 (18:20 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@835 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Tool/aixc++.py
src/engine/SCons/Tool/aixcc.py

index 3edfdf9045cf6488060b3daabd15b7c33255255b..c81e8706d2958c48a9640e94c1137ebaf85a0e6c 100644 (file)
@@ -27,6 +27,10 @@ RELEASE X.XX - XXX, XX XXX XXXX XX:XX:XX -XXXX
 
   - Fix how the man page un-indents after examples in some browsers.
 
+  From Vincent Risi:
+
+  - Fix the C and C++ tool specifications for AIX.
+
 
 
 RELEASE 0.93 - Thu, 23 Oct 2003 07:26:55 -0500
index 634b40ef98a97b94b9e25849b950b980667583bf..5cb6639f0cc9d91cf590c352258cb8c05fd5e49f 100644 (file)
@@ -34,8 +34,8 @@ def generate(env):
     suite to an Environment."""
     path, _cxx, _shcxx, version = get_xlc(env)
     if path:
-        _cxx = os.path.join(path, cxx)
-        _shcxx = os.path.join(path, shcxx)
+        _cxx = os.path.join(path, _cxx)
+        _shcxx = os.path.join(path, _shcxx)
 
     cplusplus.generate(env)
 
index f4ff5a296a4f037983aaeb7b0c85c3f1f5628271..bf7a6b3db15de7bfc9c976a754f5163c8f16fb93 100644 (file)
@@ -50,8 +50,8 @@ def generate(env):
     suite to an Environment."""
     path, _cc, _shcc, version = get_xlc(env)
     if path:
-        _cc = os.path.join(path, cc)
-        _shcc = os.path.join(path, shcc)
+        _cc = os.path.join(path, _cc)
+        _shcc = os.path.join(path, _shcc)
 
     cc.generate(env)