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: firefly_0821_release~9833^2~2938 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f11e9a1534c5e9dd4be97b30e6b24902e0ec325b;p=firefly-linux-kernel-4.4.55.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 e54f72f6c341..4cd83fae87ca 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"); } }