about summary refs log tree commit diff
path: root/scripts/maintenance
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-04-06T09·16+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-04-06T09·16+0000
commit1e7e4f21ba910bcf9da89b14cf2424a4b0955bed (patch)
treed7fc709bf97d96ce11a5d9e8117286ff5ff9446b /scripts/maintenance
parent0423d0692abebf16a19b65b37d4926de2539bf1c (diff)
* Remove the localPaths feature in manifests since it's no longer used
  and redundant anyway.

Diffstat (limited to 'scripts/maintenance')
-rwxr-xr-xscripts/maintenance/gc-releases.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/maintenance/gc-releases.pl b/scripts/maintenance/gc-releases.pl
index b8abb034771e..80b2726c5a04 100755
--- a/scripts/maintenance/gc-releases.pl
+++ b/scripts/maintenance/gc-releases.pl
@@ -7,12 +7,11 @@ use readcache;
 
 # Read the manifests.
 my %narFiles;
-my %localPaths;
 my %patches;
 
 foreach my $manifest (@ARGV) {
     print STDERR "loading $manifest\n";
-    if (readManifest($manifest, \%narFiles, \%localPaths, \%patches, 1) < 3) {
+    if (readManifest($manifest, \%narFiles, \%patches, 1) < 3) {
 #        die "manifest `$manifest' is too old (i.e., for Nix <= 0.7)\n";
     }
 }