summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 24f89318fa..cc46fb99cb 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -532,9 +532,6 @@ void Configure::parseCmdLine()
cout << "Invalid option \"" << dictionary["XQMAKESPEC"] << "\" for -xplatform." << endl;
}
}
-
- if ((dictionary["REDO"] != "yes") && (dictionary["DONE"] != "error"))
- saveCmdLine();
}
/*!
@@ -1026,6 +1023,9 @@ void Configure::configure()
cout << "Qmake failed, return code " << exitCode << endl << endl;
dictionary[ "DONE" ] = "error";
}
+
+ if ((dictionary["REDO"] != "yes") && (dictionary["DONE"] != "error"))
+ saveCmdLine();
}
void Configure::generateMakefiles()
@@ -1093,6 +1093,7 @@ bool Configure::showLicense(QString orgLicenseFile)
accept = tolower(accept);
if (accept == 'y') {
+ configCmdLine << "-confirm-license";
return true;
} else if (accept == 'n') {
return false;
@@ -1172,10 +1173,17 @@ void Configure::readLicense()
} else if (openSource) {
cout << endl << "Cannot find the GPL license files! Please download the Open Source version of the library." << endl;
dictionary["DONE"] = "error";
+ return;
}
else {
Tools::checkLicense(dictionary, sourcePath, buildPath);
}
+ if (dictionary["BUILDTYPE"] == "none") {
+ if (openSource)
+ configCmdLine << "-opensource";
+ else
+ configCmdLine << "-commercial";
+ }
}
bool Configure::reloadCmdLine(int idx)