mirror of https://github.com/acidanthera/audk.git
BaseTools: remove including Base.h if the module type is not BASE
According the module type to include the header file. Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=867 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
cbba5ca104
commit
b1aff264bf
|
@ -2013,9 +2013,7 @@ def CreateHeaderCode(Info, AutoGenC, AutoGenH):
|
|||
AutoGenH.Append(gAutoGenHCppPrologueString)
|
||||
if Info.AutoGenVersion >= 0x00010005:
|
||||
# header files includes
|
||||
AutoGenH.Append("#include <%s>\n" % gBasicHeaderFile)
|
||||
if Info.ModuleType in gModuleTypeHeaderFile \
|
||||
and gModuleTypeHeaderFile[Info.ModuleType][0] != gBasicHeaderFile:
|
||||
if Info.ModuleType in gModuleTypeHeaderFile:
|
||||
AutoGenH.Append("#include <%s>\n" % gModuleTypeHeaderFile[Info.ModuleType][0])
|
||||
#
|
||||
# if either PcdLib in [LibraryClasses] sections or there exist Pcd section, add PcdLib.h
|
||||
|
|
Loading…
Reference in New Issue