diff options
Diffstat (limited to 'src/autodep/helpers/events_analysis.py')
-rw-r--r-- | src/autodep/helpers/events_analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autodep/helpers/events_analysis.py b/src/autodep/helpers/events_analysis.py index ed5792b..eba903a 100644 --- a/src/autodep/helpers/events_analysis.py +++ b/src/autodep/helpers/events_analysis.py @@ -32,7 +32,7 @@ def is_package_useful(pkg,stages,files): continue # test 1: package is not useful if all files are *.desktop or *.xml or *.m4 - if not (f.endswith(".desktop") or f.endswith(".xml") or f.endswith(".m4")): + if not (f.endswith(".desktop") or f.endswith(".xml") or f.endswith(".m4") or f.endswith(".pc")): break else: return False # we get here if cycle ends not with break |