Skip to content

Commit

Permalink
Converted build type to upper case in order to solve build rule match…
Browse files Browse the repository at this point in the history
…ing issue.

git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1315 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
jwang36 committed Aug 29, 2008
1 parent 7cf4ced commit 831a736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Python/Workspace/WorkspaceDatabase.py
Expand Up @@ -1345,9 +1345,9 @@ def _GetBuildType(self):
if self._Header_ == None:
self._GetHeaderInfo()
if self._ComponentType != None:
self._BuildType = self._ComponentType
self._BuildType = self._ComponentType.upper()
elif self._ModuleType != None:
self._BuildType = self._ModuleType
self._BuildType = self._ModuleType.upper()
else:
self._BuildType = 'USER_DEFINED'
return self._BuildType
Expand Down

0 comments on commit 831a736

Please sign in to comment.