am e34ce374: am 2aa142ff: Fix generate-NOTICE to cope better with BSD __COPYRIGHT macros.

* commit 'e34ce3741f88d53ef1400548e4e8702cbe73fa23':
  Fix generate-NOTICE to cope better with BSD __COPYRIGHT macros.
This commit is contained in:
Elliott Hughes 2014-07-23 18:45:38 +00:00 committed by Android Git Automerger
commit 508dd2e67b

View File

@ -144,7 +144,7 @@ for arg in args:
i = 0 i = 0
while i < len(lines): while i < len(lines):
if "Copyright" in lines[i] and not "__COPYRIGHT" in lines[i]: if "Copyright" in lines[i] and not "@(#) Copyright" in lines[i]:
i = ExtractCopyrightAt(lines, i) i = ExtractCopyrightAt(lines, i)
i += 1 i += 1