summary refs log tree commit diff
path: root/maintainers/scripts/map-files.pl
diff options
context:
space:
mode:
Diffstat (limited to 'maintainers/scripts/map-files.pl')
-rw-r--r--maintainers/scripts/map-files.pl22
1 files changed, 0 insertions, 22 deletions
diff --git a/maintainers/scripts/map-files.pl b/maintainers/scripts/map-files.pl
deleted file mode 100644
index 96149a61549d..000000000000
--- a/maintainers/scripts/map-files.pl
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/perl -w
-
-use strict;
-
-my %map;
-open LIST1, "<$ARGV[0]" or die;
-while (<LIST1>) {
-    /^(\S+)\s+(.*)$/;
-    $map{$1} = $2;
-}
-
-open LIST1, "<$ARGV[1]" or die;
-while (<LIST1>) {
-    /^(\S+)\s+(.*)$/;
-    if (!defined $map{$1}) {
-        print STDERR "missing file: $2\n";
-        next;
-    }
-    print "$2\n";
-    print "$map{$1}\n";
-}
-