Merged in patch from Otavio:

* Fix extranonfree support to be backward compatible with previous
  behaviour (default to false)
This commit is contained in:
Steve McIntyre 2007-08-08 09:54:04 +00:00
parent 368ad00ff5
commit 0454b4c917
2 changed files with 5 additions and 1 deletions

4
debian/changelog vendored
View File

@ -57,6 +57,10 @@ debian-cd (3.0.3) UNRELEASED; urgency=low
* Parse isolinux.cfg case-insensatively.
* Merge boot-i386 and boot-amd64 into boot-x86.
[ Otavio Salvador ]
* Fix extranonfree support to be backward compatible with previous
behaviour (default to false)
-- Joey Hess <joeyh@debian.org> Tue, 07 Aug 2007 18:57:05 -0700
debian-cd (3.0.2) unstable; urgency=high

View File

@ -38,7 +38,7 @@ if (defined($ENV{'MAXCDS'})) {
if (defined($ENV{'EXTRANONFREE'})) {
$extranonfree = $ENV{'EXTRANONFREE'};
} else {
$extranonfree = 1;
$extranonfree = 0;
}
my $list = "$tdir/list";