From 36d9258c0dbfeab095dc5727b6ebcb55afacb0a6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Jan 2007 16:05:59 +0000 Subject: * Successors have been gone for ages. --- scripts/maintenance/gc-releases.pl | 3 +-- scripts/maintenance/shrink-manifest.pl | 6 ++---- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'scripts/maintenance') diff --git a/scripts/maintenance/gc-releases.pl b/scripts/maintenance/gc-releases.pl index 2bdd154a6539..80b2726c5a04 100755 --- a/scripts/maintenance/gc-releases.pl +++ b/scripts/maintenance/gc-releases.pl @@ -8,11 +8,10 @@ use readcache; # Read the manifests. my %narFiles; my %patches; -my %successors; foreach my $manifest (@ARGV) { print STDERR "loading $manifest\n"; - if (readManifest($manifest, \%narFiles, \%patches, \%successors, 1) < 3) { + if (readManifest($manifest, \%narFiles, \%patches, 1) < 3) { # die "manifest `$manifest' is too old (i.e., for Nix <= 0.7)\n"; } } diff --git a/scripts/maintenance/shrink-manifest.pl b/scripts/maintenance/shrink-manifest.pl index 9ceb4af90cde..7be581448807 100755 --- a/scripts/maintenance/shrink-manifest.pl +++ b/scripts/maintenance/shrink-manifest.pl @@ -7,11 +7,10 @@ use readcache; my %allNarFiles; my %allPatches; -my %allSuccessors; foreach my $manifest (glob "/data/webserver/dist/*/*/MANIFEST") { print STDERR "loading $manifest\n"; - readManifest($manifest, \%allNarFiles, \%allPatches, \%allSuccessors, 1); + readManifest($manifest, \%allNarFiles, \%allPatches, 1); } @@ -22,9 +21,8 @@ foreach my $manifest (@ARGV) { my %narFiles; my %patches; - my %successors; - if (readManifest($manifest, \%narFiles, \%patches, \%successors, 1) < 3) { + if (readManifest($manifest, \%narFiles, \%patches, 1) < 3) { print STDERR "manifest `$manifest' is too old (i.e., for Nix <= 0.7)\n"; next; } -- cgit 1.4.1