BaseTools:Ecc handle another copyright format
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=2057 Ecc can not handle the copyright format like (C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR> This will cause Ecc to report wrong information. This patch is going to handle this format Cc: Liming Gao <liming.gao@intel.com> Cc: Bob Feng <bob.c.feng@intel.com> Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
@ -2388,7 +2388,7 @@ def CheckFileHeaderDoxygenComments(FullFileName):
|
|||||||
PrintErrorMsg(ERROR_HEADER_CHECK_FILE, 'File header comment content should start with two spaces at each line', FileTable, ID)
|
PrintErrorMsg(ERROR_HEADER_CHECK_FILE, 'File header comment content should start with two spaces at each line', FileTable, ID)
|
||||||
|
|
||||||
CommentLine = CommentLine.strip()
|
CommentLine = CommentLine.strip()
|
||||||
if CommentLine.startswith('Copyright'):
|
if CommentLine.startswith('Copyright') or ('Copyright' in CommentLine and CommentLine.lower().startswith('(c)')):
|
||||||
NoCopyrightFlag = False
|
NoCopyrightFlag = False
|
||||||
if CommentLine.find('All rights reserved') == -1:
|
if CommentLine.find('All rights reserved') == -1:
|
||||||
for Copyright in EccGlobalData.gConfig.Copyright:
|
for Copyright in EccGlobalData.gConfig.Copyright:
|
||||||
|
Reference in New Issue
Block a user