about summary refs log tree commit diff
path: root/scripts/remove-patches.pl
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-01-23T16·05+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-01-23T16·05+0000
commit36d9258c0dbfeab095dc5727b6ebcb55afacb0a6 (patch)
tree9b2883ce615f5cf007f48f1227c9de284f8c05d5 /scripts/remove-patches.pl
parent7bc30e1ca8e20ee54175881364663ce5aaf1fa1c (diff)
* Successors have been gone for ages.
Diffstat (limited to 'scripts/remove-patches.pl')
-rwxr-xr-xscripts/remove-patches.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/remove-patches.pl b/scripts/remove-patches.pl
index 8329ab038a..75eb0ce778 100755
--- a/scripts/remove-patches.pl
+++ b/scripts/remove-patches.pl
@@ -7,13 +7,12 @@ for my $p (@ARGV) {
 
     my %narFiles;
     my %patches;
-    my %successors;
 
     readManifest $p,
-        \%narFiles, \%patches, \%successors;
+        \%narFiles, \%patches;
 
     %patches = ();
     
     writeManifest $p,
-        \%narFiles, \%patches, \%successors;
+        \%narFiles, \%patches;
 }