From: Joe Perches Date: Fri, 5 Mar 2010 21:43:03 +0000 (-0800) Subject: scripts/get_maintainer.pl: change --sections to print in the same style as MAINTAINERS X-Git-Tag: 2.1b_release~9225 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f11e9a1534c5e9dd4be97b30e6b24902e0ec325b;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git scripts/get_maintainer.pl: change --sections to print in the same style as MAINTAINERS Signed-off-by: Joe Perches Cc: Stefan Richter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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"); } }