]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools/Ecc: Fix a bug to report fake issue
authorHess Chen <hesheng.chen@intel.com>
Mon, 14 Dec 2015 08:08:21 +0000 (08:08 +0000)
committerhchen30 <hchen30@Edk2>
Mon, 14 Dec 2015 08:08:21 +0000 (08:08 +0000)
Fix a bug to ignore the lib ins defined in [components] section but also listed in SkipDir

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hess Chen <hesheng.chen@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19238 6f19259b-4bc3-4df7-8a09-765794883524

BaseTools/Source/Python/Ecc/Check.py

index 5e5c8e72e4002369a36ac5786227b6402d5202d1..a69ae344a3c36918a9d988b8c751e2f8c260c0a1 100644 (file)
@@ -653,6 +653,10 @@ class Check(object):
                     continue\r
                 else:\r
                     LibraryIns = os.path.normpath(mws.join(EccGlobalData.gWorkspace, LibraryClass[2]))\r
+                    SkipDirString = '|'.join(EccGlobalData.gConfig.SkipDirList)\r
+                    p = re.compile(r'.*[\\/](?:%s^\S)[\\/]?.*' % SkipDirString)\r
+                    if p.match(os.path.split(LibraryIns)[0].upper()):\r
+                        continue\r
                     SqlCommand = """select Value3 from Inf where BelongsToFile =\r
                                     (select ID from File where lower(FullPath) = lower('%s'))\r
                                     and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')\r