mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
bug 1045662 - add an extra normcase to symbolstore.py path handling to fix Windows. r=gps
This commit is contained in:
parent
1054e1f42a
commit
3d7e8f6610
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user