Chromium Code Reviews| Index: third_party/devscripts/licensecheck.pl |
| diff --git a/third_party/devscripts/licensecheck.pl b/third_party/devscripts/licensecheck.pl |
| index a2db1a926703defd1b4d9ff93a563a6d9ab7cac1..44503bba579b0e01bb7a047a162553f4ab87d567 100755 |
| --- a/third_party/devscripts/licensecheck.pl |
| +++ b/third_party/devscripts/licensecheck.pl |
| @@ -596,7 +596,7 @@ sub parselicense($) { |
| $license = "Apple MIT $license"; |
| } |
| - if ($licensetext =~ /Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license \(the \"Software\"\)/ or |
|
Paweł Hajdan Jr.
2014/09/09 12:31:36
This is likely to regress other cases where quotes
mcasas
2014/09/09 15:31:50
Done.
|
| + if ($licensetext =~ /Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license \(the Software\)/ or |
| $licensetext =~ /Boost Software License([ ,-]+Version ([^ ]+)?(\.))/i) { |
| $license = "BSL " . ($1 ? "(v$2) " : '') . $license; |
| } |