summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-24 10:55:43 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-24 10:55:43 (GMT)
commitdf9635f386aeac10e23495b2124d7713324e5c29 (patch)
tree3a00abf1e59ccae572a2450d2b939e87c4d4130d /Source
parentad167479270e55151df54603496f6ee6bd3b0e42 (diff)
downloadCMake-df9635f386aeac10e23495b2124d7713324e5c29.zip
CMake-df9635f386aeac10e23495b2124d7713324e5c29.tar.gz
CMake-df9635f386aeac10e23495b2124d7713324e5c29.tar.bz2
cmake: Remove redundant condition.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index b4565e7..1c9842e 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1620,11 +1620,6 @@ int cmake::Run(const std::vector<std::string>& args, bool noconfigure)
std::string message = "Build files have been written to: ";
message += this->GetHomeOutputDirectory();
this->UpdateProgress(message.c_str(), -1);
- if(ret)
- {
- return ret;
- }
-
return ret;
}