aboutsummaryrefslogtreecommitdiff
path: root/scripts/NixManifest.pm.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/NixManifest.pm.in')
-rw-r--r--scripts/NixManifest.pm.in17
1 files changed, 1 insertions, 16 deletions
diff --git a/scripts/NixManifest.pm.in b/scripts/NixManifest.pm.in
index be0dda616..21c8b6ba2 100644
--- a/scripts/NixManifest.pm.in
+++ b/scripts/NixManifest.pm.in
@@ -23,7 +23,7 @@ sub addPatch {
sub readManifest {
- my ($manifest, $narFiles, $localPaths, $patches) = @_;
+ my ($manifest, $narFiles, $patches) = @_;
open MANIFEST, "<$manifest"
or die "cannot open `$manifest': $!";
@@ -99,21 +99,6 @@ sub readManifest {
};
}
- elsif ($type eq "localPath") {
-
- $$localPaths{$storePath} = []
- unless defined $$localPaths{$storePath};
-
- my $localPathsList = $$localPaths{$storePath};
-
- # !!! remove duplicates
-
- push @{$localPathsList},
- { copyFrom => $copyFrom, references => $references
- , deriver => ""
- };
- }
-
}
elsif (/^\s*StorePath:\s*(\/\S+)\s*$/) { $storePath = $1; }