diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmUtilitySourceCommand.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmUtilitySourceCommand.cxx b/Source/cmUtilitySourceCommand.cxx index 10cefb8..9b542dc 100644 --- a/Source/cmUtilitySourceCommand.cxx +++ b/Source/cmUtilitySourceCommand.cxx @@ -83,6 +83,9 @@ bool cmUtilitySourceCommand::InitialPass(std::vector<std::string> const& args) std::string utilityExecutable = utilityDirectory+"/"+cmakeCFGout+"/" +utilityName+cmSystemTools::GetExecutableExtension(); + + // make sure we remove any /./ in the name + cmSystemTools::ReplaceString(utilityExecutable, "/./", "/"); // Enter the value into the cache. m_Makefile->AddCacheDefinition(cacheEntry.c_str(), |