[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[PATCH 1/3] Fix extranonfree support to be backward compatible with previous behaviour (default to false)



From: Otavio Salvador <otavio@ossystems.com.br>


---

 debian/changelog         |    4 ++++
 tools/make_disc_trees.pl |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8e6f4f6..411694b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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>  Wed, 01 Aug 2007 23:47:14 -0400
 
 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";



Reply to: