diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-07 00:54:23 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-07 00:54:23 (GMT) |
commit | f7d87c5fd47724025885522aadcab5a256690941 (patch) | |
tree | 8267892aa6641b975f510c1b2b4464179e539371 | |
parent | 5175f0f5079dc160f515f6069d0e287a2b08f0f8 (diff) | |
parent | 20998cb0c2a531977a39e63c1743b593ecdc1796 (diff) | |
download | Qt-f7d87c5fd47724025885522aadcab5a256690941.zip Qt-f7d87c5fd47724025885522aadcab5a256690941.tar.gz Qt-f7d87c5fd47724025885522aadcab5a256690941.tar.bz2 |
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3874,7 +3874,7 @@ elif [ "$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 [ -e "$relpath/LICENSE.GPL3" ]; then + if [ -f "$relpath/LICENSE.GPL3" ]; 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" @@ -3886,7 +3886,7 @@ elif [ "$Edition" = "OpenSource" ]; then echo "You have already accepted the terms of the $LicenseType license." acceptance=yes else - if [ -e "$relpath/LICENSE.GPL3" ]; then + if [ -f "$relpath/LICENSE.GPL3" ]; 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." |