From 5f7650e49727526f402a6d89fb0780b847bb475f Mon Sep 17 00:00:00 2001 From: "Fan, ZhijuX" Date: Tue, 15 Jan 2019 17:13:59 +0800 Subject: [PATCH] BaseTools:The BuildOptionPcd value is wrong In GenFds.py, Due to the second assignment, the value is wrong Its value should a list, not a string.and this line is not required Cc: Bob Feng Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhiju.Fan Reviewed-by: Bob Feng --- BaseTools/Source/Python/GenFds/GenFds.py | 1 - 1 file changed, 1 deletion(-) diff --git a/BaseTools/Source/Python/GenFds/GenFds.py b/BaseTools/Source/Python/GenFds/GenFds.py index 5a166bf455..2a5d473e3f 100644 --- a/BaseTools/Source/Python/GenFds/GenFds.py +++ b/BaseTools/Source/Python/GenFds/GenFds.py @@ -189,7 +189,6 @@ def GenFdsApi(FdsCommandDict, WorkSpaceDataBase=None): else: EdkLogger.error("GenFds", OPTION_MISSING, "Missing active platform") - GlobalData.BuildOptionPcd = FdsCommandDict.get("OptionPcd") if FdsCommandDict.get("OptionPcd") else {} GenFdsGlobalVariable.ActivePlatform = PathClass(NormPath(ActivePlatform)) if FdsCommandDict.get("conf_directory"):