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"; |