summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-12-02 03:05:24 (GMT)
committerSteven Knight <knight@baldmt.com>2004-12-02 03:05:24 (GMT)
commit04f1a4d2dd431f169a7aed2ae740c8cbd09e8d50 (patch)
tree821d3e631b3de4217862b29c180c411e964be775 /src
parent0669f3c1e4f2c646d5bb53add2dfd389885c7172 (diff)
downloadSCons-04f1a4d2dd431f169a7aed2ae740c8cbd09e8d50.zip
SCons-04f1a4d2dd431f169a7aed2ae740c8cbd09e8d50.tar.gz
SCons-04f1a4d2dd431f169a7aed2ae740c8cbd09e8d50.tar.bz2
Fix the internal Conftest._Have() function to not translate non-alphanumeric characters to underscores in string values. (Gary Oberbrunner)
Diffstat (limited to 'src')
-rw-r--r--src/CHANGES.txt3
-rw-r--r--src/engine/SCons/Conftest.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index b163ec6..7776757 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -206,6 +206,9 @@ RELEASE 0.97 - XXX
and Linux, where it's named icc. (Niall Douglas contributed an
early prototype of parts of this module.)
+ - Fix the private Conftest._Have() function so it doesn't change
+ non-alphanumeric characters to underscores.
+
From Chris Pawling:
- Have the linkloc tool use $MSVS_VERSION to select the Microsoft
diff --git a/src/engine/SCons/Conftest.py b/src/engine/SCons/Conftest.py
index f891243..4d178bd 100644
--- a/src/engine/SCons/Conftest.py
+++ b/src/engine/SCons/Conftest.py
@@ -456,8 +456,7 @@ def _Have(context, key, have):
elif type(have) == IntType:
line = "#define %s %d\n" % (key_up, have)
else:
- line = "#define %s %s\n" % (key_up,
- re.sub('[^A-Za-z0-9_]', '_', str(have)))
+ line = "#define %s %s\n" % (key_up, str(have))
if context.headerfilename:
f = open(context.headerfilename, "a")