mirror of https://github.com/acidanthera/audk.git
BaseTools: Update the Conf directory to use the absolute path
Update the Conf directory to use the absolute path for build_rule.txt and tools_def.txt. Cc: Liming Gao <liming.gao@intel.com> 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
c9b4492133
commit
51de5c302f
|
@ -62,10 +62,10 @@ gMakeTypeMap = {"MSFT":"nmake", "GCC":"gmake"}
|
|||
|
||||
|
||||
## Build rule configuration file
|
||||
gDefaultBuildRuleFile = 'Conf/build_rule.txt'
|
||||
gDefaultBuildRuleFile = 'build_rule.txt'
|
||||
|
||||
## Tools definition configuration file
|
||||
gDefaultToolsDefFile = 'Conf/tools_def.txt'
|
||||
gDefaultToolsDefFile = 'tools_def.txt'
|
||||
|
||||
## Build rule default version
|
||||
AutoGenReqBuildRuleVerNum = "0.1"
|
||||
|
@ -726,8 +726,8 @@ class WorkspaceAutoGen(AutoGen):
|
|||
#
|
||||
# add build_rule.txt & tools_def.txt
|
||||
#
|
||||
AllWorkSpaceMetaFiles.add(gDefaultBuildRuleFile)
|
||||
AllWorkSpaceMetaFiles.add(gDefaultToolsDefFile)
|
||||
AllWorkSpaceMetaFiles.add(os.path.join(GlobalData.gConfDirectory, gDefaultBuildRuleFile))
|
||||
AllWorkSpaceMetaFiles.add(os.path.join(GlobalData.gConfDirectory, gDefaultToolsDefFile))
|
||||
|
||||
# add BuildOption metafile
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue