BaseTools: Fix the bug to correctly handle the [BuildOptions]

the last fix call os.path.normpath() function, which removes the
trailing slash character, it cause NASM failure for ResetVector
driver.

Cc: Liming Gao <liming.gao@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Tested-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Yonghong Zhu 2016-04-14 23:03:45 +08:00
parent 61b02ba1f2
commit 67a69059f7
1 changed files with 10 additions and 7 deletions

View File

@ -131,13 +131,16 @@ class MultipleWorkspace(object):
PathList = PathStr.split()
if PathList:
for i, str in enumerate(PathList):
if str.find(TAB_WORKSPACE) != -1:
MacroStartPos = str.find(TAB_WORKSPACE)
MacroEndPos = str.find(')', MacroStartPos)
Substr = str[MacroEndPos+1:]
if Substr.startswith('/') or Substr.startswith('\\'):
Substr = Substr[1:]
PathList[i] = str[0:MacroStartPos] + os.path.normpath(cls.join(cls.WORKSPACE, Substr))
MacroStartPos = str.find(TAB_WORKSPACE)
if MacroStartPos != -1:
Substr = str[MacroStartPos:]
Path = Substr.replace(TAB_WORKSPACE, cls.WORKSPACE).strip()
if not os.path.exists(Path):
for Pkg in cls.PACKAGES_PATH:
Path = Substr.replace(TAB_WORKSPACE, Pkg).strip()
if os.path.exists(Path):
break
PathList[i] = str[0:MacroStartPos] + Path
PathStr = ' '.join(PathList)
return PathStr