Index: third_party/devscripts/licensecheck.pl |
diff --git a/third_party/devscripts/licensecheck.pl b/third_party/devscripts/licensecheck.pl |
index f4260dde12f6bd9008a5aeb3e3d97441c4ea14d5..0227ad1d02a3332bf6acb50235f9a1c9d5d67b74 100755 |
--- a/third_party/devscripts/licensecheck.pl |
+++ b/third_party/devscripts/licensecheck.pl |
@@ -491,6 +491,8 @@ sub parselicense($) { |
$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, distribute, and sell this software and its documentation for any purpose is hereby granted without fee/) { |
+ $license = "MIT/X11 (BSD like) $license"; |
Paweł Hajdan Jr.
2014/01/08 13:50:06
It's not obvious to me whether this is really MIT,
|
} elsif ($licensetext =~ /MIT .* License/) { |
$license = "MIT/X11 (BSD like) $license"; |
} |