diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-04-06 09:16:22 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-04-06 09:16:22 +0000 |
commit | 1e7e4f21ba910bcf9da89b14cf2424a4b0955bed (patch) | |
tree | d7fc709bf97d96ce11a5d9e8117286ff5ff9446b /scripts/update-manifest.pl | |
parent | 0423d0692abebf16a19b65b37d4926de2539bf1c (diff) |
* Remove the localPaths feature in manifests since it's no longer used
and redundant anyway.
Diffstat (limited to 'scripts/update-manifest.pl')
-rwxr-xr-x | scripts/update-manifest.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/update-manifest.pl b/scripts/update-manifest.pl index ac0ce749d..566f64673 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}; |