X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fmake_overrides.py;h=53bf2dfad6ac634f6de8ae6c5bd2090b2c112ed4;hb=8f11bdd18377414f41c4fbede628f122de5dad2d;hp=24ac0a707c535a2daedf330478acf8eadffe910d;hpb=e2ae71066cbb134753d7bfceb16e87d0b76dfd6e;p=dak.git diff --git a/dak/make_overrides.py b/dak/make_overrides.py index 24ac0a70..53bf2dfa 100755 --- a/dak/make_overrides.py +++ b/dak/make_overrides.py @@ -110,12 +110,12 @@ def main (): if otype == "deb": suffix = "" elif otype == "udeb": - if component != "main": + if component == "contrib": continue; # Ick2 suffix = ".debian-installer" elif otype == "dsc": suffix = ".src" - filename = "%s/override.%s.%s%s" % (Cnf["Dir::Override"], override_suite, component.replace("non-US/", ""), suffix) + filename = "%s/override.%s.%s%s" % (Cnf["Dir::Override"], override_suite, component, suffix) output_file = daklib.utils.open_file(filename, 'w') do_list(output_file, suite, component, otype) output_file.close()