diff options
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 37bd5f9..0c550ef 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -869,7 +869,7 @@ void cmMakefileTargetGenerator::WriteTargetDependRules() for(cmTarget::LinkLibraryVectorType::const_iterator j = libs.begin(); j != libs.end(); ++j) { - if(cmTarget const* linkee = gg->FindTarget(0, j->first.c_str(), false)) + if(cmTarget const* linkee = gg->FindTarget(0, j->first.c_str())) { if(emitted.insert(linkee).second) { @@ -1371,7 +1371,7 @@ void cmMakefileTargetGenerator { // Depend on other CMake targets. if(cmTarget* tgt = - this->GlobalGenerator->FindTarget(0, lib->first.c_str(), false)) + this->GlobalGenerator->FindTarget(0, lib->first.c_str())) { if(const char* location = tgt->GetLocation(this->LocalGenerator->ConfigurationName.c_str())) |