Skip to content
Snippets Groups Projects
Commit 27a96a0f authored by Simon McVittie's avatar Simon McVittie
Browse files

collect-dbgsym: If libfoo1 is installed, always consider libfoo1-dbg

parent 83264764
No related branches found
No related tags found
No related merge requests found
......@@ -222,6 +222,15 @@ def main():
want.binary_version,
)
)
# A somewhat common convention in older distribution branches
# was to put libfoo1 debug symbols in libfoo1-dbg
to_inspect.add(
'{}-dbg:{}={}'.format(
want.binary,
want.architecture,
want.binary_version,
)
)
if args.include_executables:
names.add(want.binary)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment