diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 13:44:55 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-08-27 15:26:37 +0200 |
commit | a8c7ccb1839d912edc972384de6641f3c17ad8ff (patch) | |
tree | 29ae1a8eea43e92087552dc377198464b1441781 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 5ad25ef4b690252a4251e8824e00b053ea61d000 (diff) | |
download | cmake-a8c7ccb1839d912edc972384de6641f3c17ad8ff.tar.gz |
VS: Replace FULL/UNCHANGED conversion with equivalent
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index e72abe9572..497defb7c5 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -278,8 +278,8 @@ cmSourceFile* cmLocalVisualStudio7Generator::CreateVCProjBuildRule() cmCustomCommandLines commandLines; commandLines.push_back(commandLine); const char* no_working_directory = 0; - std::string fullpathStampName = this->Convert( - stampName.c_str(), cmOutputConverter::FULL, cmOutputConverter::UNCHANGED); + std::string fullpathStampName = + cmSystemTools::CollapseFullPath(stampName.c_str()); this->Makefile->AddCustomCommandToOutput( fullpathStampName.c_str(), listFiles, makefileIn.c_str(), commandLines, comment.c_str(), no_working_directory, true); |