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/build/build.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'BaseTools/Source/Python/build') diff --git a/BaseTools/Source/Python/build/build.py b/BaseTools/Source/Python/build/build.py index 85ee9985bb..74491f6ee7 100644 --- a/BaseTools/Source/Python/build/build.py +++ b/BaseTools/Source/Python/build/build.py @@ -251,8 +251,9 @@ def LaunchCommand(Command, WorkingDir): # ubuntu may fail with an error message that the command is not found. # So here we may need convert command from string to list instance. if not isinstance(Command, list): - Command = Command.split() - + if platform.system() != 'Windows': + Command = Command.split() + Proc = None EndOfProcedure = None try: @@ -928,7 +929,6 @@ class Build(): if BuildModule: BuildCommand = BuildCommand + [Target] LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir) - self.CreateAsBuiltInf() return True # build library @@ -946,7 +946,6 @@ class Build(): for Mod in AutoGenObject.ModuleBuildDirectoryList: NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Mod, makefile)), 'pbuild'] LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir) - self.CreateAsBuiltInf() return True # cleanlib @@ -1056,7 +1055,6 @@ class Build(): BuildCommand = BuildCommand + [Target] if BuildModule: LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir) - self.CreateAsBuiltInf() return True # build library -- cgit v1.2.3