|
From: <xf...@us...> - 2011-12-05 03:09:52
|
Revision: 2457
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2457&view=rev
Author: xfzyr
Date: 2011-12-05 03:09:46 +0000 (Mon, 05 Dec 2011)
Log Message:
-----------
Update code to Fix a issue for the regression build failure of TunnelMountain.
Signed-off-by: yzeng15
Reviewed-by: gikidy
Reviewed-by: yingke
Modified Paths:
--------------
trunk/BaseTools/Source/Python/GenFds/FdfParser.py
Modified: trunk/BaseTools/Source/Python/GenFds/FdfParser.py
===================================================================
--- trunk/BaseTools/Source/Python/GenFds/FdfParser.py 2011-12-05 02:47:45 UTC (rev 2456)
+++ trunk/BaseTools/Source/Python/GenFds/FdfParser.py 2011-12-05 03:09:46 UTC (rev 2457)
@@ -1584,7 +1584,7 @@
BlockSizePcd = PcdPair
self.Profile.PcdDict[PcdPair] = BlockSize
FileLineTuple = GetRealFileLine(self.FileName, self.CurrentLineNumber)
- self.Profile.PcdFileLineDict[pcdPair] = FileLineTuple
+ self.Profile.PcdFileLineDict[PcdPair] = FileLineTuple
BlockSize = long(BlockSize, 0)
BlockNumber = None
@@ -1675,7 +1675,7 @@
Obj.SetVarDict[PcdPair] = Value
self.Profile.PcdDict[PcdPair] = Value
FileLineTuple = GetRealFileLine(self.FileName, self.CurrentLineNumber)
- self.Profile.PcdFileLineDict[pcdPair] = FileLineTuple
+ self.Profile.PcdFileLineDict[PcdPair] = FileLineTuple
return True
return False
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|