Fix extranonfree support to be backward compatible with previous behaviour (default to false) From: Otavio Salvador --- debian/changelog | 6 +++++- tools/make_disc_trees.pl | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index d7abdc8..65b9db8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,7 +33,11 @@ debian-cd (3.0.3) UNRELEASED; urgency=high * Remove pcmcia-cs-udeb from udeb_include; we don't need this udeb with modern kernels. (We didn't need it for etch either actually.) - -- Joey Hess Sun, 27 May 2007 01:18:08 -0400 + [ Otavio Salvador ] + * Fix extranonfree support to be backward compatible with previous + behaviour (default to false) + + -- Otavio Salvador Tue, 29 May 2007 00:50:51 -0300 debian-cd (3.0.2) unstable; urgency=high diff --git a/tools/make_disc_trees.pl b/tools/make_disc_trees.pl index c6f61d5..7ea92d4 100755 --- a/tools/make_disc_trees.pl +++ b/tools/make_disc_trees.pl @@ -38,7 +38,7 @@ if (defined($ENV{'MAXCDS'})) { if (defined($ENV{'EXTRANONFREE'})) { $extranonfree = $ENV{'EXTRANONFREE'}; } else { - $extranonfree = 1; + $extranonfree = 0; } my $list = "$tdir/list";