summaryrefslogtreecommitdiff
path: root/whatmaps
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-04-25 13:06:02 +0200
committerGuido Günther <agx@sigxcpu.org>2014-04-25 21:35:17 +0200
commit2829d848a04a7400a9cc71a1b1f24841c99018c8 (patch)
tree4edb5d0f14f7871e8f46c6f7424debd28d33bda8 /whatmaps
parentd3dfd1ae7f09128893ccec1bfe7e1bb076d33b0a (diff)
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.
Diffstat (limited to 'whatmaps')
-rw-r--r--whatmaps/pkg.py2
1 files changed, 1 insertions, 1 deletions
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(\.[^/]*)$)')
+ _so_regex = re.compile(r'(?P<so>/.*\.so(\.[^/]*)?$)')
_list_contents = None
def __init__(self, name):