From df9635f386aeac10e23495b2124d7713324e5c29 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 24 May 2015 12:55:43 +0200 Subject: [PATCH] cmake: Remove redundant condition. --- Source/cmake.cxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index b4565e7c9..1c9842e1b 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1620,11 +1620,6 @@ int cmake::Run(const std::vector& 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; }