Skip to content

Commit

Permalink
Removed the test of a key of tdict since it doesn't support this oper…
Browse files Browse the repository at this point in the history
…ation and will cause dead block.

git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1294 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
jwang36 committed Aug 7, 2008
1 parent 2de4da5 commit 21c8800
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Source/Python/AutoGen/AutoGen.py
Expand Up @@ -1029,9 +1029,7 @@ def ResolveLibraryReference(self, Module):
while len(LibraryConsumerList) > 0:
M = LibraryConsumerList.pop()
for LibraryName in M.Libraries:
Library = None
if (LibraryName, ':dummy:') in self.Platform.LibraryClasses:
Library = self.Platform.LibraryClasses[LibraryName, ':dummy:']
Library = self.Platform.LibraryClasses[LibraryName, ':dummy:']
if Library == None:
EdkLogger.warn("build", "Library [%s] is not found" % LibraryName, File=str(M),
ExtraData="\t%s [%s]" % (str(Module), self.Arch))
Expand Down

0 comments on commit 21c8800

Please sign in to comment.