]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools:Ecc handle another copyright format
authorFan, ZhijuX <zhijux.fan@intel.com>
Fri, 6 Sep 2019 03:29:54 +0000 (11:29 +0800)
committerFeng, Bob C <bob.c.feng@intel.com>
Mon, 9 Sep 2019 03:13:52 +0000 (11:13 +0800)
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>
BaseTools/Source/Python/Ecc/c.py

index 2a73da7cb874e0c270c67b76b2fa2e2174bbc350..a67ebb0630c1c1d0dd8c89dde620588112b24bfe 100644 (file)
@@ -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)\r
 \r
             CommentLine = CommentLine.strip()\r
-            if CommentLine.startswith('Copyright'):\r
+            if CommentLine.startswith('Copyright') or ('Copyright' in CommentLine and CommentLine.lower().startswith('(c)')):\r
                 NoCopyrightFlag = False\r
                 if CommentLine.find('All rights reserved') == -1:\r
                     for Copyright in EccGlobalData.gConfig.Copyright:\r