summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2014-11-11 19:05:12 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2015-02-02 11:14:40 +0000
commit9999ada1bfce32606e4acff1614bffe66133b358 (patch)
tree5a48bc899e4c5f2a0cc9360dda7ce3d6d6131a0a /qmake
parent84c80538afc477cab4e76d7c30d0e50d27d75cf9 (diff)
don't verify compilers twice
Change-Id: Iad214f8a14c29b633752935e31125a6f4b512f4b Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/makefile.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index fb86dbe71e..f86fd62da4 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -167,7 +167,6 @@ MakefileGenerator::verifyCompilers()
void
MakefileGenerator::initOutPaths()
{
- verifyCompilers();
ProValueMap &v = project->variables();
//for shadow builds
if(!v.contains("QMAKE_ABSOLUTE_SOURCE_PATH")) {
@@ -409,8 +408,8 @@ MakefileGenerator::initCompiler(const MakefileGenerator::Compiler &comp)
void
MakefileGenerator::init()
{
- initOutPaths();
verifyCompilers();
+ initOutPaths();
ProValueMap &v = project->variables();