about summary refs log tree commit diff
path: root/scripts/update-manifest.pl
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/update-manifest.pl
parent0423d0692abebf16a19b65b37d4926de2539bf1c (diff)
* Remove the localPaths feature in manifests since it's no longer used
  and redundant anyway.

Diffstat (limited to '')
-rwxr-xr-xscripts/update-manifest.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/update-manifest.pl b/scripts/update-manifest.pl
index ac0ce749d9ab..566f6467328d 100755
--- a/scripts/update-manifest.pl
+++ b/scripts/update-manifest.pl
@@ -8,10 +8,9 @@ die unless scalar @ARGV == 2;
 my $cache = $ARGV[0];
 my $manifest = $ARGV[1];
 my %narFiles;
-my %localPaths;
 my %patches;
 
-readManifest $manifest, \%narFiles, \%localPaths, \%patches;
+readManifest $manifest, \%narFiles, \%patches;
 
 foreach my $storePath (keys %narFiles) {
     my $narFileList = $narFiles{$storePath};