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

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 10985065: Whitelist the University of Illinois Opensource License (http://llvm.org/releases/3.1/LICENSE.TXT) … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « no previous file | tools/checklicenses/checklicenses.py » ('j') | 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 159239)
+++ third_party/devscripts/licensecheck.pl (working copy)
@@ -434,6 +434,10 @@
$license = "MIT/X11 (BSD like) $license";
}
+ if ($licensetext =~ /This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details./){
Paweł Hajdan Jr. 2012/09/28 13:59:42 nit: No need to include "See LICENSE.TXT for detai
Alexander Potapenko 2012/10/02 10:46:18 Done.
+ $license = "University of Illinois Open Source License (BSD like) $license";
Paweł Hajdan Jr. 2012/09/28 13:59:42 nit: Include NCSA in the name, e.g. NCSA/Universit
Alexander Potapenko 2012/10/02 10:46:18 Done. "University of Illinois/NCSA" is used more w
+ }
+
if ($licensetext =~ /Permission to use, copy, modify, and(\/or)? distribute this software (and its documentation )?for any purpose (with or )?without fee is hereby granted, provided.*(copyright|entire) notice.*all copies/) {
$license = "ISC $license";
}
« no previous file with comments | « no previous file | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698