diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:52 (GMT) |
commit | e0fd2d0446101847dd40cfe4cc451667d04ddcd9 (patch) | |
tree | 39f52ae6710edb8af4533e2183077e0cdfa4abaa /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | ad70a236f4368c21c08bcd4ea4d28425176c4e17 (diff) | |
download | CMake-e0fd2d0446101847dd40cfe4cc451667d04ddcd9.zip CMake-e0fd2d0446101847dd40cfe4cc451667d04ddcd9.tar.gz CMake-e0fd2d0446101847dd40cfe4cc451667d04ddcd9.tar.bz2 |
Makefiles: Port CreateCDCommand to string-based API
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 580343d..b3cd6a2 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -418,7 +418,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules( this->GeneratorTarget, "target"); this->LocalGenerator->CreateCDCommand( commands1, this->Makefile->GetCurrentBinaryDirectory(), - cmOutputConverter::HOME_OUTPUT); + this->LocalGenerator->GetBinaryDirectory()); commands.insert(commands.end(), commands1.begin(), commands1.end()); commands1.clear(); } @@ -672,7 +672,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules( } this->LocalGenerator->CreateCDCommand( commands1, this->Makefile->GetCurrentBinaryDirectory(), - cmOutputConverter::HOME_OUTPUT); + this->LocalGenerator->GetBinaryDirectory()); commands.insert(commands.end(), commands1.begin(), commands1.end()); commands1.clear(); @@ -689,7 +689,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules( commands1.push_back(symlink); this->LocalGenerator->CreateCDCommand( commands1, this->Makefile->GetCurrentBinaryDirectory(), - cmOutputConverter::HOME_OUTPUT); + this->LocalGenerator->GetBinaryDirectory()); commands.insert(commands.end(), commands1.begin(), commands1.end()); commands1.clear(); } |