diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-08-06 09:08:55 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-08-08 08:49:36 +0800 |
commit | e5cbb982562c354a6c040552d0ff20a38202c284 (patch) | |
tree | 39d539988b5e9a3b1ea6e13f31b370584bcec08f | |
parent | 40d1adb3ebf215bacf89d866fd72bfad897daec3 (diff) | |
download | edk2-e5cbb982562c354a6c040552d0ff20a38202c284.tar.gz |
BaseTools: Debug message make confused
Debug message make confused
Fix https://bugzilla.tianocore.org/show_bug.cgi?id=995
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
-rw-r--r-- | BaseTools/Source/Python/AutoGen/AutoGen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py index 06ff84b4cd..033ad644c1 100644 --- a/BaseTools/Source/Python/AutoGen/AutoGen.py +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py @@ -3240,7 +3240,7 @@ class ModuleAutoGen(AutoGen): # match tool chain
if F.TagName not in ToolChainTagSet:
EdkLogger.debug(EdkLogger.DEBUG_9, "The toolchain [%s] for processing file [%s] is found, "
- "but [%s] is needed" % (F.TagName, str(F), self.ToolChain))
+ "but [%s] is currently used" % (F.TagName, str(F), self.ToolChain))
continue
# match tool chain family or build rule family
if F.ToolChainFamily not in ToolChainFamilySet:
|