mirror of https://github.com/acidanthera/audk.git
BaseTools: Add the missing package include directory in PcdValueInit Makefile
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Cc: Feng Bob C <bob.c.feng@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
58204afac3
commit
b005802a1c
|
@ -2047,7 +2047,9 @@ class DscBuildData(PlatformBuildClassObject):
|
|||
continue
|
||||
if Cache.Includes:
|
||||
if str(Cache.MetaFile.Path) not in PlatformInc:
|
||||
PlatformInc[str(Cache.MetaFile.Path)] = Cache.CommonIncludes
|
||||
PlatformInc[str(Cache.MetaFile.Path)] = []
|
||||
PlatformInc[str(Cache.MetaFile.Path)].append (os.path.dirname(Cache.MetaFile.Path))
|
||||
PlatformInc[str(Cache.MetaFile.Path)].extend (Cache.CommonIncludes)
|
||||
|
||||
PcdDependDEC = []
|
||||
for Pcd in StructuredPcds.values():
|
||||
|
|
Loading…
Reference in New Issue