mirror of https://github.com/acidanthera/audk.git
BaseTools: Not cache the .efi file location into build option
We don't need cache the .efi file location into build option, otherwise when we change the --binary-destination location, it would cause the hash value is different. Cc: Liming Gao <liming.gao@intel.com> 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
0385efa00b
commit
5381ff6342
|
@ -686,9 +686,6 @@ class WorkspaceAutoGen(AutoGen):
|
||||||
content += 'Flash Image Definition: '
|
content += 'Flash Image Definition: '
|
||||||
content += str(self.FdfFile)
|
content += str(self.FdfFile)
|
||||||
content += os.linesep
|
content += os.linesep
|
||||||
if GlobalData.gBinCacheDest:
|
|
||||||
content += 'Cache of .efi location: '
|
|
||||||
content += str(GlobalData.gBinCacheDest)
|
|
||||||
SaveFileOnChange(os.path.join(self.BuildDir, 'BuildOptions'), content, False)
|
SaveFileOnChange(os.path.join(self.BuildDir, 'BuildOptions'), content, False)
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue