mirror of https://github.com/acidanthera/audk.git
BaseTools: Add two macros into AutoGenObject macro dict
Add DEST_DIR_OUTPUT and DEST_DIR_DEBUG into AutoGenObject macro dict. Because some module (eg: BaseUefiCpuLib) may use this macro in the make file. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
f9b940ecf9
commit
df1e1b63d4
|
@ -2378,6 +2378,8 @@ class ModuleAutoGen(AutoGen):
|
|||
self._Macro["MODULE_BUILD_DIR" ] = self.BuildDir
|
||||
self._Macro["OUTPUT_DIR" ] = self.OutputDir
|
||||
self._Macro["DEBUG_DIR" ] = self.DebugDir
|
||||
self._Macro["DEST_DIR_OUTPUT" ] = self.OutputDir
|
||||
self._Macro["DEST_DIR_DEBUG" ] = self.DebugDir
|
||||
return self._Macro
|
||||
|
||||
## Return the module build data object
|
||||
|
|
Loading…
Reference in New Issue