summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFan, ZhijuX <zhijux.fan@intel.com>2019-09-06 11:29:54 +0800
committerFeng, Bob C <bob.c.feng@intel.com>2019-09-09 11:13:52 +0800
commit03ad3d889c64978c31a8ccd70f1862558bdb0a2d (patch)
tree608cb5e879c7c0d264c2e590a3c511510d1e936b
parent59b754c9f697d9627b0ccccd327d5132f0e1abb0 (diff)
downloadedk2-03ad3d889c64978c31a8ccd70f1862558bdb0a2d.tar.gz
edk2-03ad3d889c64978c31a8ccd70f1862558bdb0a2d.tar.bz2
edk2-03ad3d889c64978c31a8ccd70f1862558bdb0a2d.zip
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>
-rw-r--r--BaseTools/Source/Python/Ecc/c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Ecc/c.py b/BaseTools/Source/Python/Ecc/c.py
index 2a73da7cb8..a67ebb0630 100644
--- a/BaseTools/Source/Python/Ecc/c.py
+++ b/BaseTools/Source/Python/Ecc/c.py
@@ -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)
CommentLine = CommentLine.strip()
- if CommentLine.startswith('Copyright'):
+ if CommentLine.startswith('Copyright') or ('Copyright' in CommentLine and CommentLine.lower().startswith('(c)')):
NoCopyrightFlag = False
if CommentLine.find('All rights reserved') == -1:
for Copyright in EccGlobalData.gConfig.Copyright: