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

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 8769025: Add match for another "MIT/X11 (BSD like) license" (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/devscripts/licensecheck.pl
===================================================================
--- third_party/devscripts/licensecheck.pl (revision 112368)
+++ third_party/devscripts/licensecheck.pl (working copy)
@@ -432,7 +432,9 @@
$license = "MIT/X11 (BSD like) $license";
} elsif ($licensetext =~ /Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose/) {
$license = "MIT/X11 (BSD like) $license";
- }
+ } elsif ($licensetext =~ /Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted/) {
Paweł Hajdan Jr. 2011/12/02 11:00:53 Could you please show me the full text of the lice
GeorgeY 2011/12/02 17:21:05 /* * The authors of this software are Rob Pike an
+ $license = "MIT/X11 (BSD like) $license";
+ }
Paweł Hajdan Jr. 2011/12/02 11:00:53 nit: This (only the last line) should be space-ind
GeorgeY 2011/12/02 17:21:05 Done.
if ($licensetext =~ /Permission to use, copy, modify, and(\/or)? distribute this software for any purpose with or without fee is hereby granted, provided.*copyright notice.*permission notice.*all copies/) {
$license = "ISC $license";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698