Merge pull request #10812 from electron/fix_symbol_file_names
Use real shared library names for symbol files
This commit is contained in:
commit
0358862066
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue