From 6ad79d13ddd74b9bf1a1819527d5eb1e88bac8c2 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 18 Jan 2008 08:35:37 -0500 Subject: BUG: Construction of COMPILE_DEFINITIONS_ property name must use upper-case config name. --- Source/cmLocalUnixMakefileGenerator3.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 8445a6c..be7ae59 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1849,7 +1849,7 @@ void cmLocalUnixMakefileGenerator3 std::vector defines; { std::string defPropName = "COMPILE_DEFINITIONS_"; - defPropName += this->ConfigurationName; + defPropName += cmSystemTools::UpperCase(this->ConfigurationName); if(const char* ddefs = this->Makefile->GetProperty("COMPILE_DEFINITIONS")) { cmSystemTools::ExpandListArgument(ddefs, defines); -- cgit v0.12