diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-04-06T09·16+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-04-06T09·16+0000 |
commit | 1e7e4f21ba910bcf9da89b14cf2424a4b0955bed (patch) | |
tree | d7fc709bf97d96ce11a5d9e8117286ff5ff9446b /scripts/nix-generate-patches.in | |
parent | 0423d0692abebf16a19b65b37d4926de2539bf1c (diff) |
* Remove the localPaths feature in manifests since it's no longer used
and redundant anyway.
Diffstat (limited to 'scripts/nix-generate-patches.in')
-rw-r--r-- | scripts/nix-generate-patches.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/nix-generate-patches.in b/scripts/nix-generate-patches.in index c96cc704a1e8..dc5c3bf68eff 100644 --- a/scripts/nix-generate-patches.in +++ b/scripts/nix-generate-patches.in @@ -26,10 +26,10 @@ my $srcManifest = $ARGV[3]; my $dstManifest = $ARGV[4]; my (%srcNarFiles, %srcLocalPaths, %srcPatches); -readManifest $srcManifest, \%srcNarFiles, \%srcLocalPaths, \%srcPatches; +readManifest $srcManifest, \%srcNarFiles, \%srcPatches; my (%dstNarFiles, %dstLocalPaths, %dstPatches); -readManifest $dstManifest, \%dstNarFiles, \%dstLocalPaths, \%dstPatches; +readManifest $dstManifest, \%dstNarFiles, \%dstPatches; my $tmpDir = tempdir("nix-generate-patches.XXXXXX", CLEANUP => 1, TMPDIR => 1) or die "cannot create a temporary directory"; |