BaseTools: Allow decimal values in the EDK II meta-data file
Because the EDK II meta-data specifications already allow using decimal values in the EDK II Meta-data file [Defines] section, this patch update code to allow this usage. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18746 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -343,9 +343,14 @@ class MetaFileParser(object):
|
||||
Name, Value = self._ValueList[1], self._ValueList[2]
|
||||
# Sometimes, we need to make differences between EDK and EDK2 modules
|
||||
if Name == 'INF_VERSION':
|
||||
try:
|
||||
self._Version = int(Value, 0)
|
||||
except:
|
||||
if re.match(r'0[xX][\da-f-A-F]{5,8}', Value):
|
||||
self._Version = int(Value, 0)
|
||||
elif re.match(r'\d+\.\d+', Value):
|
||||
ValueList = Value.split('.')
|
||||
Major = '%04o' % int(ValueList[0], 0)
|
||||
Minor = '%04o' % int(ValueList[1], 0)
|
||||
self._Version = int('0x' + Major + Minor, 0)
|
||||
else:
|
||||
EdkLogger.error('Parser', FORMAT_INVALID, "Invalid version number",
|
||||
ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
|
||||
|
||||
|
Reference in New Issue
Block a user