Commit 1baf8f07 authored by Łukasz Nowak's avatar Łukasz Nowak

- ignore broken links


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40462 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6a756798
...@@ -112,6 +112,9 @@ def readLddInfoList(f): ...@@ -112,6 +112,9 @@ def readLddInfoList(f):
a(lib) a(lib)
elif 'warning: you do not have execution permission for' in line: elif 'warning: you do not have execution permission for' in line:
pass pass
elif 'No such file or directory' in line:
# ignore broken links
pass
elif line: elif line:
# /lib64/ld-linux-x86-64.so.2 (0x00007f77fd400000) # /lib64/ld-linux-x86-64.so.2 (0x00007f77fd400000)
a(line.split()[0]) a(line.split()[0])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment