Browse Source

Use real shared library names for symbol files

Ales Pergl 7 years ago
parent
commit
3a571bbdb4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/posix/generate_breakpad_symbols.py

+ 1 - 1
tools/posix/generate_breakpad_symbols.py

@@ -117,7 +117,7 @@ def GetSharedLibraryDependenciesLinux(binary):
   for line in ldd.splitlines():
     m = lib_re.match(line)
     if m:
-      result.append(m.group(1))
+      result.append(os.path.realpath(m.group(1)))
   return result