Fix an incorrect _concat() call in the definition for the mingw Tool. (Chad Austin)
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 2 Dec 2003 04:36:32 +0000 (04:36 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 2 Dec 2003 04:36:32 +0000 (04:36 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@853 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Tool/mingw.py

index 08e007a56f376a768900bf11db098d24657310c8..8e1054a3678fe798189305c7a1be64406ae57292 100644 (file)
@@ -20,6 +20,9 @@ RELEASE 0.95 - XXX
   - Accomodate the fact that Cygwin's os.path.normcase() lies about
     the underlying system being case-sensitive.
 
+  - Fix an incorrect _concat() call in the $RCINCFLAGS definition for
+    the mingw Tool.
+
   From David M. Cooke:
 
   - Make the Fortran scanner case-insensitive for the INCLUDE string.
index cd18bb5064ee6b8b94bfedda949f706c43f2b311..bc3693dc4cea294041a951e36ec63e429c7a6a32 100644 (file)
@@ -132,7 +132,7 @@ def generate(env):
 
     env['RC'] = 'windres'
     env['RCFLAGS'] = ''
-    env['RCINCFLAGS'] = '$( ${_concat(RCINCPREFIX, CPPPATH, RCINCSUFFIX, locals(), globals(), RDirs)} $)'
+    env['RCINCFLAGS'] = '$( ${_concat(RCINCPREFIX, CPPPATH, RCINCSUFFIX, __env__, RDirs)} $)'
     env['RCINCPREFIX'] = '--include-dir '
     env['RCINCSUFFIX'] = ''
     env['RCCOM'] = '$RC $RCINCFLAGS $RCFLAGS -i $SOURCE -o $TARGET'