summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2020-03-25 18:56:31 -0700
committerBob Badour <bbadour@google.com>2020-03-25 18:56:31 -0700
commit28f3a699e35dffda867713c10981027f60f2a245 (patch)
tree34962044f66486c7c16ca139b0dd8eb7cff29c90
parent433dd14cb58a66737e158ad1331c02162a80f43f (diff)
downloadlibdaemon-28f3a699e35dffda867713c10981027f60f2a245.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 Change-Id: Ib85937f32829ada298af95cf91c0520990a2f441
-rw-r--r--NOTICE19
1 files changed, 0 insertions, 19 deletions
diff --git a/NOTICE b/NOTICE
deleted file mode 100644
index 9fefbba..0000000
--- a/NOTICE
+++ /dev/null
@@ -1,19 +0,0 @@
-Copyright (C) 2003-2008 Lennart Poettering
-
-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.