diff options
Diffstat (limited to 'Source/cmBuildNameCommand.cxx')
-rw-r--r-- | Source/cmBuildNameCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmBuildNameCommand.cxx b/Source/cmBuildNameCommand.cxx index 6188ea6..b551106 100644 --- a/Source/cmBuildNameCommand.cxx +++ b/Source/cmBuildNameCommand.cxx @@ -60,8 +60,9 @@ bool cmBuildNameCommand::InitialPass(std::vector<std::string> const& args) } } } - std::string compiler = "-${CMAKE_CXX_COMPILER}"; + std::string compiler = "${CMAKE_CXX_COMPILER}"; m_Makefile->ExpandVariablesInString ( compiler ); + buildname += "-"; buildname += cmSystemTools::GetFilenameName(compiler); cmSystemTools::ReplaceString(buildname, "/", "_"); |