mozilla-linux3.patch
changeset 293 3fd4e37e5e52
equal deleted inserted replaced
292:058eaa15d5d8 293:3fd4e37e5e52
       
     1 # HG changeset patch
       
     2 # Parent bf7c3e1c6174630743f9f94808c4dd3a2edc0c6b
       
     3 diff --git a/toolkit/crashreporter/tools/symbolstore.py b/toolkit/crashreporter/tools/symbolstore.py
       
     4 --- a/toolkit/crashreporter/tools/symbolstore.py
       
     5 +++ b/toolkit/crashreporter/tools/symbolstore.py
       
     6 @@ -376,16 +376,17 @@ def GetVCSFilename(file, srcdirs):
       
     7      return (file.replace("\\", "/"), root)
       
     8  
       
     9  def GetPlatformSpecificDumper(**kwargs):
       
    10      """This function simply returns a instance of a subclass of Dumper
       
    11      that is appropriate for the current platform."""
       
    12      return {'win32': Dumper_Win32,
       
    13              'cygwin': Dumper_Win32,
       
    14              'linux2': Dumper_Linux,
       
    15 +	    'linux3': Dumper_Linux,
       
    16              'sunos5': Dumper_Solaris,
       
    17              'darwin': Dumper_Mac}[sys.platform](**kwargs)
       
    18  
       
    19  def SourceIndex(fileStream, outputPath, vcs_root):
       
    20      """Takes a list of files, writes info to a data block in a .stream file"""
       
    21      # Creates a .pdb.stream file in the mozilla\objdir to be used for source indexing
       
    22      # Create the srcsrv data block that indexes the pdb file
       
    23      result = True