BaseTools:change some incorrect parameter defaults
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1858 for Dict={},There are pitfalls in the way this default parameter is set and Dict is not used in functions, other functions have these two cases, I will change some incorrect parameter defaults This patch is going to fix this issue Cc: Liming Gao <liming.gao@intel.com> Cc: Bob Feng <bob.c.feng@intel.com> Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
@ -205,10 +205,12 @@ class BuildFile(object):
|
||||
def GetRemoveDirectoryCommand(self, DirList):
|
||||
return [self._RD_TEMPLATE_[self._FileType] % {'dir':Dir} for Dir in DirList]
|
||||
|
||||
def PlaceMacro(self, Path, MacroDefinitions={}):
|
||||
def PlaceMacro(self, Path, MacroDefinitions=None):
|
||||
if Path.startswith("$("):
|
||||
return Path
|
||||
else:
|
||||
if MacroDefinitions is None:
|
||||
MacroDefinitions = {}
|
||||
PathLength = len(Path)
|
||||
for MacroName in MacroDefinitions:
|
||||
MacroValue = MacroDefinitions[MacroName]
|
||||
@ -1762,4 +1764,4 @@ def GetDependencyList(AutoGenObject, FileCache, File, ForceList, SearchPathList)
|
||||
|
||||
# This acts like the main() function for the script, unless it is 'import'ed into another script.
|
||||
if __name__ == '__main__':
|
||||
pass
|
||||
pass
|
||||
|
Reference in New Issue
Block a user