diff options
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"; |