From: Oswald Buddenhagen Date: Fri, 18 May 2012 19:06:54 +0000 (+0200) Subject: remove unnecessary conditional X-Git-Tag: 071012110112~338^2^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fdd663208d4951b55c85253a764214c7890f4b8;p=profile%2Fivi%2Fqtbase.git remove unnecessary conditional the code above already deals with the differences Change-Id: Ifb799e46f5187e7bd3d0f0169e868ad267bcfe23 Reviewed-by: Joerg Bornemann --- diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index bdf6c8b..bddcdf7 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -2661,12 +2661,8 @@ MakefileGenerator::writeSubTargets(QTextStream &t, QListfirst((*qut_it) + ".recurse_target"); //write the commands - if(!out_directory.isEmpty()) { - writeSubMakeCall(t, out_directory_cdin, makefilein + " " + sub_targ, - out_directory_cdout); - } else { - writeSubMakeCall(t, "\n\t", makefilein + " " + sub_targ, QString()); - } + writeSubMakeCall(t, out_directory_cdin, makefilein + " " + sub_targ, + out_directory_cdout); } } if(project->isEmpty("QMAKE_NOFORCE") &&