diff options
author | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-01-22 11:17:09 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-01-23 16:18:19 +0800 |
commit | e74cea4c7b2ea013a4b08f22c0a4e7a4ad6e69bb (patch) | |
tree | 0e709586c5ce42f0bf6a42a1473e22509918cc64 | |
parent | 32ae05811d10982039b831ba4705c6cdf47d66fb (diff) | |
download | edk2-e74cea4c7b2ea013a4b08f22c0a4e7a4ad6e69bb.tar.gz edk2-e74cea4c7b2ea013a4b08f22c0a4e7a4ad6e69bb.tar.bz2 edk2-e74cea4c7b2ea013a4b08f22c0a4e7a4ad6e69bb.zip |
BaseTools: Add "processing meta-data" string back
Previous build tool will display "processing meta-data ..." to let user
know the progress. this Patch add this string back.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | BaseTools/Source/Python/AutoGen/AutoGen.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py index 0f7454f55a..157ecfb395 100644 --- a/BaseTools/Source/Python/AutoGen/AutoGen.py +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py @@ -1,7 +1,7 @@ ## @file
# Generate AutoGen.h, AutoGen.c and *.depex files
#
-# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -318,8 +318,8 @@ class WorkspaceAutoGen(AutoGen): EdkLogger.verbose("\nFLASH_DEFINITION = %s" % self.FdfFile)
-# if Progress:
-# Progress.Start("\nProcessing meta-data")
+ if Progress:
+ Progress.Start("\nProcessing meta-data")
if self.FdfFile:
#
|