summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 2ee2220..fce5a9c 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1434,11 +1434,9 @@ bool cmLocalUnixMakefileGenerator3::UpdateDependencies(const char* tgtInfo,
return this->ScanDependencies(dir.c_str(), validDependencies);
}
- else
- {
- // The dependencies are already up-to-date.
- return true;
- }
+
+ // The dependencies are already up-to-date.
+ return true;
}
//----------------------------------------------------------------------------