diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-21 22:29:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-26 22:50:05 (GMT) |
commit | ce43ed2cc14f96c56441da9908053737efbaaf2e (patch) | |
tree | ac13e2265708d32d565cfa13b2413bbe09aaca51 /Source/cmLocalNinjaGenerator.cxx | |
parent | d90c9738da7003b966036c70727611b17d17f3a6 (diff) | |
download | CMake-ce43ed2cc14f96c56441da9908053737efbaaf2e.zip CMake-ce43ed2cc14f96c56441da9908053737efbaaf2e.tar.gz CMake-ce43ed2cc14f96c56441da9908053737efbaaf2e.tar.bz2 |
Use LocalGenerator when possible
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmLocalNinjaGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index 891c44e..e11571a 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -42,7 +42,7 @@ void cmLocalNinjaGenerator::Generate() // Compute the path to use when referencing the current output // directory from the top output directory. this->HomeRelativeOutputPath = - this->Convert(this->Makefile->GetCurrentBinaryDirectory(), HOME_OUTPUT); + this->Convert(this->GetCurrentBinaryDirectory(), HOME_OUTPUT); if(this->HomeRelativeOutputPath == ".") { this->HomeRelativeOutputPath = ""; |