From 2829d848a04a7400a9cc71a1b1f24841c99018c8 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 25 Apr 2014 13:06:02 +0200 Subject: Also look for shared objects without a version While this will add all -dev packages to the checks we need this in order to also pick up dlopen'd objects. --- whatmaps/pkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'whatmaps') diff --git a/whatmaps/pkg.py b/whatmaps/pkg.py index b69dd27..ab9088d 100644 --- a/whatmaps/pkg.py +++ b/whatmaps/pkg.py @@ -38,7 +38,7 @@ class Pkg(object): type = None services = None - _so_regex = re.compile(r'(?P/.*\.so(\.[^/]*)$)') + _so_regex = re.compile(r'(?P/.*\.so(\.[^/]*)?$)') _list_contents = None def __init__(self, name): -- cgit v1.2.3