diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-09 08:58:33 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-09 08:58:33 (GMT) |
commit | b6a174d2bcd5d64cff7a54a4744fe2b5811d6f9e (patch) | |
tree | 9a9762f3b34ee3739396c4b9bd4df6246db3d77c /Source/cmMakefileTargetGenerator.cxx | |
parent | d0faa58a51114a97f3af6a951b6c4052ca19c9ee (diff) | |
download | CMake-b6a174d2bcd5d64cff7a54a4744fe2b5811d6f9e.zip CMake-b6a174d2bcd5d64cff7a54a4744fe2b5811d6f9e.tar.gz CMake-b6a174d2bcd5d64cff7a54a4744fe2b5811d6f9e.tar.bz2 |
Makefiles: Remove query for CMAKE_OBJECT_NAME
it is not set.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index d256a69..9f5bda9 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1207,9 +1207,7 @@ void cmMakefileTargetGenerator::WriteObjectsVariable( i != this->ExternalObjects.end(); ++i) { object = this->LocalGenerator->MaybeConvertToRelativePath(currentBinDir, *i); - *this->BuildFileStream << " " << lineContinue << "\n" - << this->Makefile->GetSafeDefinition( - "CMAKE_OBJECT_NAME"); + *this->BuildFileStream << " " << lineContinue << "\n"; *this->BuildFileStream << this->LocalGenerator->ConvertToQuotedOutputPath( i->c_str(), useWatcomQuote); } |