From df0cee8d8ce6fefc7b38ac238479300bb3051298 Mon Sep 17 00:00:00 2001 From: Hess Chen Date: Wed, 20 Aug 2014 07:41:38 +0000 Subject: This patch is going to: 1. Fix a bug in GenFds for wrongly handling '"' of command line parameter. 2. Provide different input parameter mode for different OS. For Linux, using a list. For Windows, using a string. 3. Remove 3 un-existing function calling. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen Reviewed-by: Yingke Liu git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15847 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/Source/Python/GenFds/GenFds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BaseTools/Source/Python/GenFds') diff --git a/BaseTools/Source/Python/GenFds/GenFds.py b/BaseTools/Source/Python/GenFds/GenFds.py index 087f7ab356..c5ccda677b 100644 --- a/BaseTools/Source/Python/GenFds/GenFds.py +++ b/BaseTools/Source/Python/GenFds/GenFds.py @@ -157,7 +157,7 @@ def main(): if Options.Macros: for Pair in Options.Macros: - Pair.strip('"') + Pair = Pair.strip('"') List = Pair.split('=') if len(List) == 2: if List[0].strip() == "EFI_SOURCE": -- cgit v1.2.3