remove references to dead variables
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>
Thu, 2 Aug 2012 13:24:56 +0000 (15:24 +0200)
committerQt by Nokia <qt-info@nokia.com>
Mon, 6 Aug 2012 08:40:07 +0000 (10:40 +0200)
Change-Id: I2603ebabbec5011fa0bf3e858401655a9a822768
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
tools/configure/configureapp.cpp

index 7208858..96790a4 100644 (file)
@@ -3713,8 +3713,6 @@ void Configure::generateMakefiles()
                 args << (sourcePath + "/qtbase.pro");
                 args << "-o";
                 args << buildPath;
-                if (!dictionary[ "QMAKEADDITIONALARGS" ].isEmpty())
-                    args << dictionary[ "QMAKEADDITIONALARGS" ];
 
                 QDir::setCurrent(dirPath);
                 if (int exitCode = Environment::execute(args, QStringList(), QStringList())) {
@@ -3743,13 +3741,10 @@ void Configure::generateMakefiles()
 
                     args << QDir::toNativeSeparators(buildPath + "/bin/qmake.exe");
                     args << sourcePath + "/" + dirPath + projectName;
-                    args << dictionary[ "QMAKE_ALL_ARGS" ];
 
                     cout << "For " << qPrintable(QDir::toNativeSeparators(dirPath + projectName)) << endl;
                     args << "-o";
                     args << it->target;
-                    if (!dictionary[ "QMAKEADDITIONALARGS" ].isEmpty())
-                        args << dictionary[ "QMAKEADDITIONALARGS" ];
 
                     QDir::setCurrent(dirPath);