diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-23 12:35:22 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-24 11:29:48 (GMT) |
commit | 73245e591109c38712d5aa91bee655de70e8456a (patch) | |
tree | 187450f8ad38945ac78f2b3b24a9ce61f0ffcb4e /Source/cmLocalGhsMultiGenerator.cxx | |
parent | 4fdad392b6ad59827866b8115bd554397e81ddb5 (diff) | |
download | CMake-73245e591109c38712d5aa91bee655de70e8456a.zip CMake-73245e591109c38712d5aa91bee655de70e8456a.tar.gz CMake-73245e591109c38712d5aa91bee655de70e8456a.tar.bz2 |
GHS: Remove unnecessary Configure override.
This only sets a member variable which is never read. Presumably
this was copied from the makefile generator.
Diffstat (limited to 'Source/cmLocalGhsMultiGenerator.cxx')
-rw-r--r-- | Source/cmLocalGhsMultiGenerator.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/cmLocalGhsMultiGenerator.cxx b/Source/cmLocalGhsMultiGenerator.cxx index ddef3f5..a537265 100644 --- a/Source/cmLocalGhsMultiGenerator.cxx +++ b/Source/cmLocalGhsMultiGenerator.cxx @@ -37,21 +37,3 @@ void cmLocalGhsMultiGenerator::Generate() } } } - -// Implemented in: -// cmLocalGenerator. -// Used in: -// Source/cmMakefile.cxx -// Source/cmGlobalGenerator.cxx -void cmLocalGhsMultiGenerator::Configure() -{ - // 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); - if (this->HomeRelativeOutputPath == ".") - { - this->HomeRelativeOutputPath = ""; - } - this->cmLocalGenerator::Configure(); -} |