Merge pull request #10812 from electron/fix_symbol_file_names

Use real shared library names for symbol files
This commit is contained in:
Cheng Zhao 2017-10-17 15:27:35 +08:00 committed by GitHub
commit 0358862066

View file

@ -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