mirror of
https://github.com/electron/electron.git
synced 2026-01-09 23:48:01 -05:00
Use real shared library names for symbol files
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user