aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2020-03-25 18:56:29 -0700
committerBob Badour <bbadour@google.com>2020-03-30 22:03:14 +0000
commit531a509ddbf8a4182825f1096ebca88064921c26 (patch)
treeb91f80f99461d632c51bfc134376ab4a893587e0
parent9cf9865a7e2cbb67f26c9574d72be7575e334b2d (diff)
downloadsix-531a509ddbf8a4182825f1096ebca88064921c26.tar.gz
Remove redundant NOTICE copied from LICENSE.
Identified using the below shell script: $ find -H . -name LICENSE -type f -print0 | xargs -0 dirname \ | while read dir; do \ if [ -f "${dir}/NOTICE" ] \ && diff "${dir}/LICENSE" "${dir}/NOTICE" >/dev/null; then \ echo "${dir}/NOTICE"; \ fi; \ done Now that http://r.android.com/r/1235427 and http://r.android.com/r/1238719 are merged, LICENSE files copied into NOTICE files are no longer needed. Bug: 67772237 Bug: 68860345 Test: manually built and diffed before and after system image notices Exempt-From-Owner-Approval: janitorial work Change-Id: I382b63f8dc181c5fa3c0bff35d8fdf2db73b1469
-rw-r--r--NOTICE18
1 files changed, 0 insertions, 18 deletions
diff --git a/NOTICE b/NOTICE
deleted file mode 100644
index f3068bf..0000000
--- a/NOTICE
+++ /dev/null
@@ -1,18 +0,0 @@
-Copyright (c) 2010-2017 Benjamin Peterson
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.