In list2cds, don't add udebs in the final COMPLETE run - they're no
use there.
This commit is contained in:
parent
b695b182c4
commit
ab7e1d0171
|
@ -1,8 +1,11 @@
|
||||||
|
|
||||||
debian-cd (3.0.3) UNRELEASED; urgency=high
|
debian-cd (3.0.3) UNRELEASED; urgency=high
|
||||||
|
|
||||||
[ Steve McIntyre ]
|
[ Steve McIntyre ]
|
||||||
* In start_new_disc, cope with $DEBVERSION containing spaces
|
* In start_new_disc, cope with $DEBVERSION containing spaces
|
||||||
* Only put the release notes and installation guide on disc#1
|
* Only put the release notes and installation guide on disc#1
|
||||||
|
* In list2cds, don't add udebs in the final COMPLETE run -
|
||||||
|
they're no use there
|
||||||
|
|
||||||
-- Steve McIntyre <93sam@debian.org> Wed, 28 Mar 2007 22:57:41 +0100
|
-- Steve McIntyre <93sam@debian.org> Wed, 28 Mar 2007 22:57:41 +0100
|
||||||
|
|
||||||
|
|
|
@ -208,8 +208,14 @@ if ($complete) {
|
||||||
foreach my $p (sort { ($packages{lc $a}{"Section"} cmp $packages{lc $b}{"Section"})
|
foreach my $p (sort { ($packages{lc $a}{"Section"} cmp $packages{lc $b}{"Section"})
|
||||||
|| (lc $a cmp lc $b) }
|
|| (lc $a cmp lc $b) }
|
||||||
grep { not ($included{$_} or $excluded{$_}) } keys %packages) {
|
grep { not ($included{$_} or $excluded{$_}) } keys %packages) {
|
||||||
|
# At this point, we should *not* be adding any more udebs,
|
||||||
|
# as they're no use to anybody.
|
||||||
|
if ($packages{lc $p}{"IsUdeb"}) {
|
||||||
|
msg(2, " Ignoring udeb $p ...\n");
|
||||||
|
} else {
|
||||||
add_package (lc $p, 0, 0);
|
add_package (lc $p, 0, 0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Now select the non-free packages for an extra CD
|
# Now select the non-free packages for an extra CD
|
||||||
|
|
Loading…
Reference in New Issue