about summary refs log tree commit diff
path: root/scripts/remove-patches.pl
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-14T10·39+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-14T10·39+0200
commit5bcb98271103c6c2ca3b993d8b1b0eb9eadcbc1c (patch)
treebd4956ef334773fec96bfca1c26fabb357ec5800 /scripts/remove-patches.pl
parentfa13d3f4f3d8fb6dc3e3fc87ac5a2e26d8b32d84 (diff)
Remove cruft
Diffstat (limited to 'scripts/remove-patches.pl')
-rwxr-xr-xscripts/remove-patches.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/remove-patches.pl b/scripts/remove-patches.pl
deleted file mode 100755
index 401771a27d76..000000000000
--- a/scripts/remove-patches.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#! /usr/bin/perl -w -I/home/eelco/nix/scripts
-
-use strict;
-use readmanifest;
-
-for my $p (@ARGV) {
-
-    my %narFiles;
-    my %patches;
-
-    readManifest $p, \%narFiles, \%patches;
-
-    %patches = ();
-    
-    writeManifest $p, \%narFiles, \%patches;
-}