0

Whitelist the University of Illinois Opensource License (http://llvm.org/releases/3.1/LICENSE.TXT) for the LLVM bits.

Review URL: https://codereview.chromium.org/10985065

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159683 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
glider@chromium.org
2012-10-02 12:31:02 +00:00
parent f763d8ff14
commit aaeeeb997f
2 changed files with 5 additions and 0 deletions
third_party/devscripts
tools/checklicenses

@@ -434,6 +434,10 @@ sub parselicense($) {
$license = "MIT/X11 (BSD like) $license";
}
if ($licensetext =~ /This file is distributed under the University of Illinois Open Source License/){
$license = "University of Illinois/NCSA Open Source License (BSD like) $license";
}
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";
}

@@ -83,6 +83,7 @@ WHITELISTED_LICENSES = [
'libpng',
'zlib/libpng',
'SGI Free Software License B',
'University of Illinois/NCSA Open Source License (BSD like)',
]