Skip to content

Commit

Permalink
[backend] do not create deltas for debuginfo/debugsource packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe authored and adrianschroeter committed Nov 24, 2014
1 parent 7f26c54 commit 597748d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/backend/bs_sched
Expand Up @@ -1094,9 +1094,7 @@ sub makedeltas {
for my $bin (@all) {
next if $bin =~ /^::import::/; # no deltas for imports, they don't get published
next if $bin =~ /\.(?:no)?src\.rpm$/; # no source deltas
if ($nosourceaccess) {
next if $bin =~ /-debug(:?info|source).*\.rpm$/;
}
next if $bin =~ /-debug(:?info|source).*\.rpm$/; # no debug deltas
next unless $bin =~ /^(.+)-[^-]+-[^-]+\.([a-zA-Z][^\/\.\-]*)\.rpm$/;
my $binname = $1;
my $binarch = $2;
Expand Down

0 comments on commit 597748d

Please sign in to comment.