From 275b334f8be1bd06d807ac9a5c1cb4cb66d6e26c Mon Sep 17 00:00:00 2001 From: Bill Lorensen Date: Wed, 12 Sep 2001 17:09:40 -0400 Subject: [PATCH] ENH: drop the case of the site name. This makes it consistent with Dart's usage. --- Source/cmSiteNameCommand.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmSiteNameCommand.cxx b/Source/cmSiteNameCommand.cxx index c6999a148..c629c4415 100644 --- a/Source/cmSiteNameCommand.cxx +++ b/Source/cmSiteNameCommand.cxx @@ -96,10 +96,10 @@ bool cmSiteNameCommand::InitialPass(std::vector& args) cmRegularExpression reg( RegExp.c_str() ); if(reg.find(nsOutput.c_str())) { - siteName = reg.match(1); + siteName = cmSystemTools::LowerCase(reg.match(1)); } } - + m_Makefile-> AddCacheDefinition("SITE", siteName.c_str(),