Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 291783002: Add colorama to third_party/colorama (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: http://i1.kym-cdn.com/photos/images/original/000/234/739/fa5.jpg Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/devscripts/licensecheck.pl
diff --git a/third_party/devscripts/licensecheck.pl b/third_party/devscripts/licensecheck.pl
index 5e0332780f9e32658418ddfef93cff09fd341c00..67a2bbe7b019e563b2218d8dee10638d4a201fbb 100755
--- a/third_party/devscripts/licensecheck.pl
+++ b/third_party/devscripts/licensecheck.pl
@@ -531,6 +531,8 @@ sub parselicense($) {
$license = "BSD-like $license";
} elsif ($licensetext =~ /GOVERNED BY A BSD-STYLE SOURCE LICENSE/) {
$license = "BSD-like $license";
+ } elsif ($licensetext =~ /BSD 3-Clause license/) {
+ $license = "BSD (3 clause) $license";
}
if ($licensetext =~ /Mozilla Public License( Version|, v.) ([^ ]+[^., ]),?/) {

Powered by Google App Engine
This is Rietveld 408576698