summaryrefslogtreecommitdiff
path: root/tools/list2src
diff options
context:
space:
mode:
Diffstat (limited to 'tools/list2src')
-rwxr-xr-xtools/list2src7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/list2src b/tools/list2src
index f01b9cc..8923ff8 100755
--- a/tools/list2src
+++ b/tools/list2src
@@ -17,7 +17,6 @@ my $limit = $ENV{'SRCSIZELIMIT1'} || $deflimit;
my $nonfree = $ENV{'NONFREE'} || 0;
my $extranonfree = $ENV{'EXTRANONFREE'} || 0;
-my $nonus = $ENV{'NONUS'} || 0;
my $contrib = $ENV{'CONTRIB'} || 0;
my $complete = $ENV{'COMPLETE'} || 0;
my $local = $ENV{'LOCAL'} || 0;
@@ -52,7 +51,6 @@ my %bin2src;
my %sources;
my %included;
my %excluded;
-my @nonuslist=();
my %includesrc;
my @sections = ( "main" );
@@ -114,11 +112,6 @@ while (defined($_ = <SOURCES>)) {
} else {
$excluded{$p} = 0;
}
- # Generate the list of non-US source packages
- if (($sources{$p}{"Directory"} =~ /non-US/))
- {
- push @nonuslist, $p;
- }
# Match between source & binary packages
foreach $bin (split (/,\s+/, $sources{$p}{"Binary"})) {
$bin2src{$bin} = $p;