bug 1045662 - add an extra normcase to symbolstore.py path handling to fix Windows. r=gps

This commit is contained in:
Ted Mielczarek 2014-07-30 08:00:59 -04:00
parent 1054e1f42a
commit 3d7e8f6610

View File

@ -315,7 +315,8 @@ def make_file_mapping(install_manifests):
manifest.populate_registry(reg)
for dst, src in reg:
if hasattr(src, 'path'):
file_mapping[os.path.join(destination, dst)] = src.path
abs_dest = os.path.normpath(os.path.join(destination, dst))
file_mapping[abs_dest] = src.path
return file_mapping
def GetPlatformSpecificDumper(**kwargs):