Author: adam-guest
Date: 2008-02-28 19:50:02 +0000 (Thu, 28 Feb 2008)
New Revision: 1079
Modified:
trunk/scripts/licensecheck.pl
Log:
Fix broken elsif indentation
Modified: trunk/scripts/licensecheck.pl
===================================================================
--- trunk/scripts/licensecheck.pl 2008-02-28 19:47:06 UTC (rev 1078)
+++ trunk/scripts/licensecheck.pl 2008-02-28 19:50:02 UTC (rev 1079)
@@ -351,8 +351,7 @@
$licensetext =~ /GNU General Public License as published by the Free
Software Foundation; version ([^ ]+) /i) {
$gplver = " (v$1)";
- }
- elsif ($licensetext =~ /either version ([^ ]+) of the License, or \(at
your option\) any later version/) {
+ } elsif ($licensetext =~ /either version ([^ ]+) of the License, or \(at
your option\) any later version/) {
$gplver = " (v$1 or later)";
}
@@ -382,8 +381,7 @@
if ($licensetext =~ /This file is part of the .*Qt GUI Toolkit. This file
may be distributed under the terms of the Q Public License as defined/) {
$license = "QPL (part of Qt) $license";
- }
- elsif ($licensetext =~ /may be distributed under the terms of the Q Public
License as defined/) {
+ } elsif ($licensetext =~ /may be distributed under the terms of the Q
Public License as defined/) {
$license = "QPL $license";
}
--
To unsubscribe, send mail to [EMAIL PROTECTED]