Do not match "*-debugsource-*" as debuginfo package

These kind of packages are not expected to exist in the wild.

Signed-off-by: Till Maas <opensource@till.name>
This commit is contained in:
Till Maas 2017-07-26 23:05:35 +02:00
parent 29bedf2ccc
commit 938531e2b2
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import pungi.multilib_dnf
from pungi.profiler import Profiler
# Globs for package name that should match all debuginfo packages
DEBUG_GLOBS = ["*-debuginfo", "*-debuginfo-*", "*-debugsource", "*-debugsource-*"]
DEBUG_GLOBS = ["*-debuginfo", "*-debuginfo-*", "*-debugsource"]
def get_source_name(pkg):