From a133a74c8905c58721a2ae129c02c264bf6b3b09 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Apr 2016 17:31:54 +0200 Subject: Remove cruft --- maintainers/scripts/map-files.pl | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 maintainers/scripts/map-files.pl (limited to 'maintainers') 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 () { - /^(\S+)\s+(.*)$/; - $map{$1} = $2; -} - -open LIST1, "<$ARGV[1]" or die; -while () { - /^(\S+)\s+(.*)$/; - if (!defined $map{$1}) { - print STDERR "missing file: $2\n"; - next; - } - print "$2\n"; - print "$map{$1}\n"; -} - -- cgit 1.4.1