diff options
author | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-12-06 17:36:56 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-12-13 16:05:53 +0800 |
commit | 5381ff634203a087fdba81b17c34e3d9b637b406 (patch) | |
tree | 36ef7b4ebbb0e760c959478c07e88ae1de6afeeb /BaseTools/Source/Python/AutoGen/AutoGen.py | |
parent | 0385efa00bc32bc60bbd023ba301022615cf215b (diff) | |
download | edk2-5381ff634203a087fdba81b17c34e3d9b637b406.tar.gz edk2-5381ff634203a087fdba81b17c34e3d9b637b406.tar.bz2 edk2-5381ff634203a087fdba81b17c34e3d9b637b406.zip |
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>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen/AutoGen.py')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/AutoGen.py | 3 |
1 files changed, 0 insertions, 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)
#
|