From 938531e2b22ac43f3bd667213c97643c703235a8 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 26 Jul 2017 23:05:35 +0200 Subject: [PATCH] Do not match "*-debugsource-*" as debuginfo package These kind of packages are not expected to exist in the wild. Signed-off-by: Till Maas --- pungi/gather_dnf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/gather_dnf.py b/pungi/gather_dnf.py index 2d31645c..5558bd11 100644 --- a/pungi/gather_dnf.py +++ b/pungi/gather_dnf.py @@ -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):