diff options
Diffstat (limited to 'tools/check_ecs_deps')
-rwxr-xr-x | tools/check_ecs_deps/check_ecs_deps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_ecs_deps/check_ecs_deps.py b/tools/check_ecs_deps/check_ecs_deps.py index 073001e..fb6e87b5 100755 --- a/tools/check_ecs_deps/check_ecs_deps.py +++ b/tools/check_ecs_deps/check_ecs_deps.py @@ -106,7 +106,7 @@ def _main(): kUndesiredLibraryList), '|')) mapping_regexp = re.compile(r"\s*([^/]*) => ") blessed_regexp = re.compile(r"(%s)[-0-9.]*\.so" % string.join(map(re.escape, - kAllowedLibraryList), '|') + kAllowedLibraryList), '|')) success = 0 warning = 0 |