diff --git a/debian/changelog b/debian/changelog index cbbe13c9..1157de8f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,12 @@ + debian-cd (3.0.3) UNRELEASED; urgency=high [ Steve McIntyre ] * In start_new_disc, cope with $DEBVERSION containing spaces * 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 debian-cd (3.0.2) unstable; urgency=high diff --git a/tools/list2cds b/tools/list2cds index 78ec89f9..39e15128 100755 --- a/tools/list2cds +++ b/tools/list2cds @@ -208,7 +208,13 @@ if ($complete) { foreach my $p (sort { ($packages{lc $a}{"Section"} cmp $packages{lc $b}{"Section"}) || (lc $a cmp lc $b) } grep { not ($included{$_} or $excluded{$_}) } keys %packages) { - add_package (lc $p, 0, 0); + # 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); + } } }