diff options
author | Joe Perches <joe@perches.com> | 2010-03-05 13:43:03 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-06 11:26:34 -0800 |
commit | f11e9a1534c5e9dd4be97b30e6b24902e0ec325b (patch) | |
tree | e756158c54ca6b302b0c2ffa568359241a2983a4 /scripts | |
parent | 4b76c9da611593eed6a13527c5ebd00c173624ad (diff) | |
download | op-kernel-dev-f11e9a1534c5e9dd4be97b30e6b24902e0ec325b.zip op-kernel-dev-f11e9a1534c5e9dd4be97b30e6b24902e0ec325b.tar.gz |
scripts/get_maintainer.pl: change --sections to print in the same style as MAINTAINERS
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get_maintainer.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index e54f72f..4cd83fa 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -381,8 +381,10 @@ foreach my $file (@files) { $line =~ s/\\\./\./g; ##Convert \. to . $line =~ s/\.\*/\*/g; ##Convert .* to * } + $line =~ s/^([A-Z]):/$1:\t/g; print("$line\n"); } + print("\n"); } } |