summaryrefslogtreecommitdiffstats
path: root/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 /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 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 5b57f8fa55..383918df8a 100755
--- a/configure
+++ b/configure
@@ -2962,7 +2962,7 @@ elif [ $COMMERCIAL_USER = "yes" ]; then
;;
esac
if [ '!' -f "$outpath/LICENSE" ]; then
- echo "The LICENSE, LICENSE.GPL3 LICENSE.LGPL file shipped with"
+ echo "The LICENSE, LICENSE.GPL LICENSE.LGPL file shipped with"
echo "this software has disappeared."
echo
echo "Sorry, you are not licensed to use this software."
@@ -2999,7 +2999,7 @@ if [ "$Edition" = "OpenSource" ]; then
while true; do
echo "You are licensed to use this software under the terms of"
echo "the Lesser GNU General Public License (LGPL) versions 2.1."
- if [ -f "$relpath/LICENSE.GPL3" ]; then
+ if [ -f "$relpath/LICENSE.GPL" ]; then
echo "You are also licensed to use this software under the terms of"
echo "the GNU General Public License (GPL) versions 3."
affix="either"
@@ -3011,7 +3011,7 @@ if [ "$Edition" = "OpenSource" ]; then
echo "You have already accepted the terms of the $LicenseType license."
acceptance=yes
else
- if [ -f "$relpath/LICENSE.GPL3" ]; then
+ if [ -f "$relpath/LICENSE.GPL" ]; then
echo "Type '3' to view the GNU General Public License version 3."
fi
echo "Type 'L' to view the Lesser GNU General Public License version 2.1."
@@ -3029,7 +3029,7 @@ if [ "$Edition" = "OpenSource" ]; then
echo
exit 1
elif [ "$acceptance" = "3" ]; then
- more "$relpath/LICENSE.GPL3"
+ more "$relpath/LICENSE.GPL"
elif [ "$acceptance" = "L" ]; then
more "$relpath/LICENSE.LGPL"
fi