diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-23T16·05+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-23T16·05+0000 |
commit | 36d9258c0dbfeab095dc5727b6ebcb55afacb0a6 (patch) | |
tree | 9b2883ce615f5cf007f48f1227c9de284f8c05d5 /scripts/generate-patches.pl.in | |
parent | 7bc30e1ca8e20ee54175881364663ce5aaf1fa1c (diff) |
* Successors have been gone for ages.
Diffstat (limited to 'scripts/generate-patches.pl.in')
-rwxr-xr-x | scripts/generate-patches.pl.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/scripts/generate-patches.pl.in b/scripts/generate-patches.pl.in index 67a6adaa7113..9e355f6aee28 100755 --- a/scripts/generate-patches.pl.in +++ b/scripts/generate-patches.pl.in @@ -29,22 +29,19 @@ print "TEMP = $tmpDir\n"; my %srcNarFiles; my %srcPatches; -my %srcSuccessors; my %dstNarFiles; my %dstPatches; -my %dstSuccessors; readManifest "$srcDir/MANIFEST", - \%srcNarFiles, \%srcPatches, \%srcSuccessors; + \%srcNarFiles, \%srcPatches; readManifest "$dstDir/MANIFEST", - \%dstNarFiles, \%dstPatches, \%dstSuccessors; + \%dstNarFiles, \%dstPatches; sub findOutputPaths { my $narFiles = shift; - my $successors = shift; my %outPaths; @@ -69,10 +66,10 @@ sub findOutputPaths { } print "finding src output paths...\n"; -my %srcOutPaths = findOutputPaths \%srcNarFiles, \%srcSuccessors; +my %srcOutPaths = findOutputPaths \%srcNarFiles; print "finding dst output paths...\n"; -my %dstOutPaths = findOutputPaths \%dstNarFiles, \%dstSuccessors; +my %dstOutPaths = findOutputPaths \%dstNarFiles; sub getNameVersion { @@ -400,4 +397,4 @@ do { # Rewrite the manifest of the destination (with the new patches). writeManifest "$dstDir/MANIFEST", - \%dstNarFiles, \%dstPatches, \%dstSuccessors; + \%dstNarFiles, \%dstPatches; |