summaryrefslogtreecommitdiffstats
path: root/tools/configure
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-03-04 08:44:51 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-06 12:21:14 +0100
commit02c8306da6c9c738c8191b23e216602a741d73e4 (patch)
tree816b1f951cfb24abc6970b9ccf72d564e65dd5aa /tools/configure
parent736d7a26cd511ccff010c3ec1b582cd8a027d616 (diff)
Fix the name of the GPLv3 license file
Qt 4 used to have it called LICENSE.GPL3 since we used to have GPLv2 as an option before Qt 4.5 (which is when we added the LGPL v2.1). Looks like no one realized that the configure script looks for that file when LICENSE.GPL was added to the modularized repositories... Task-number: QTBUG-37175 Change-Id: Iffb35adf128c3e49a7a0c12dbccd5ebe9bccf3f2 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'tools/configure')
-rw-r--r--tools/configure/configureapp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 9995fb179e..f71d0cf9a8 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -4215,7 +4215,7 @@ bool Configure::showLicense(QString orgLicenseFile)
QString licenseFile = orgLicenseFile;
QString theLicense;
if (dictionary["EDITION"] == "OpenSource" || dictionary["EDITION"] == "Snapshot") {
- haveGpl3 = QFile::exists(orgLicenseFile + "/LICENSE.GPL3");
+ haveGpl3 = QFile::exists(orgLicenseFile + "/LICENSE.GPL");
theLicense = "GNU Lesser General Public License (LGPL) version 2.1";
if (haveGpl3)
theLicense += "\nor the GNU General Public License (GPL) version 3";
@@ -4255,7 +4255,7 @@ bool Configure::showLicense(QString orgLicenseFile)
} else {
if (dictionary["EDITION"] == "OpenSource" || dictionary["EDITION"] == "Snapshot") {
if (accept == '3')
- licenseFile = orgLicenseFile + "/LICENSE.GPL3";
+ licenseFile = orgLicenseFile + "/LICENSE.GPL";
else
licenseFile = orgLicenseFile + "/LICENSE.LGPL";
}
@@ -4292,7 +4292,7 @@ void Configure::readLicense()
dictionary["LICENSE FILE"] = sourcePath;
bool openSource = false;
- bool hasOpenSource = QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.GPL3") || QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.LGPL");
+ bool hasOpenSource = QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.GPL") || QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.LGPL");
if (dictionary["BUILDTYPE"] == "commercial") {
openSource = false;
} else if (dictionary["BUILDTYPE"] == "opensource") {