From 5381ff634203a087fdba81b17c34e3d9b637b406 Mon Sep 17 00:00:00 2001 From: Yonghong Zhu Date: Wed, 6 Dec 2017 17:36:56 +0800 Subject: [PATCH] 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 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu Reviewed-by: Liming Gao --- BaseTools/Source/Python/AutoGen/AutoGen.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py index 1c4c395479..8ad385aac2 100644 --- a/BaseTools/Source/Python/AutoGen/AutoGen.py +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py @@ -686,9 +686,6 @@ class WorkspaceAutoGen(AutoGen): content += 'Flash Image Definition: ' content += str(self.FdfFile) content += os.linesep - if GlobalData.gBinCacheDest: - content += 'Cache of .efi location: ' - content += str(GlobalData.gBinCacheDest) SaveFileOnChange(os.path.join(self.BuildDir, 'BuildOptions'), content, False) #