mirror of https://github.com/acidanthera/audk.git
BaseTools/Ecc: Fix a bug to report fake issue
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
This commit is contained in:
parent
cd625ae90e
commit
044f60172b
|
@ -653,6 +653,10 @@ class Check(object):
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
LibraryIns = os.path.normpath(mws.join(EccGlobalData.gWorkspace, LibraryClass[2]))
|
LibraryIns = os.path.normpath(mws.join(EccGlobalData.gWorkspace, LibraryClass[2]))
|
||||||
|
SkipDirString = '|'.join(EccGlobalData.gConfig.SkipDirList)
|
||||||
|
p = re.compile(r'.*[\\/](?:%s^\S)[\\/]?.*' % SkipDirString)
|
||||||
|
if p.match(os.path.split(LibraryIns)[0].upper()):
|
||||||
|
continue
|
||||||
SqlCommand = """select Value3 from Inf where BelongsToFile =
|
SqlCommand = """select Value3 from Inf where BelongsToFile =
|
||||||
(select ID from File where lower(FullPath) = lower('%s'))
|
(select ID from File where lower(FullPath) = lower('%s'))
|
||||||
and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')
|
and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')
|
||||||
|
|
Loading…
Reference in New Issue