From a5be48b5b4511b3097bbcfe82868d9f6eb32300d Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Tue, 2 Dec 2003 04:36:32 +0000 Subject: Fix an incorrect _concat() call in the definition for the mingw Tool. (Chad Austin) --- src/CHANGES.txt | 3 +++ src/engine/SCons/Tool/mingw.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 08e007a..8e1054a 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -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. diff --git a/src/engine/SCons/Tool/mingw.py b/src/engine/SCons/Tool/mingw.py index cd18bb5..bc3693d 100644 --- a/src/engine/SCons/Tool/mingw.py +++ b/src/engine/SCons/Tool/mingw.py @@ -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' -- cgit v0.12