summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-10-09 08:58:33 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-10-09 08:58:33 (GMT)
commitb6a174d2bcd5d64cff7a54a4744fe2b5811d6f9e (patch)
tree9a9762f3b34ee3739396c4b9bd4df6246db3d77c /Source/cmMakefileTargetGenerator.cxx
parentd0faa58a51114a97f3af6a951b6c4052ca19c9ee (diff)
downloadCMake-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.cxx4
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);
}