aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-03-05 16:43:03 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-06 14:26:34 -0500
commitf11e9a1534c5e9dd4be97b30e6b24902e0ec325b (patch)
treee756158c54ca6b302b0c2ffa568359241a2983a4 /scripts
parent4b76c9da611593eed6a13527c5ebd00c173624ad (diff)
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-xscripts/get_maintainer.pl2
1 files changed, 2 insertions, 0 deletions
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) {
381 $line =~ s/\\\./\./g; ##Convert \. to . 381 $line =~ s/\\\./\./g; ##Convert \. to .
382 $line =~ s/\.\*/\*/g; ##Convert .* to * 382 $line =~ s/\.\*/\*/g; ##Convert .* to *
383 } 383 }
384 $line =~ s/^([A-Z]):/$1:\t/g;
384 print("$line\n"); 385 print("$line\n");
385 } 386 }
387 print("\n");
386 } 388 }
387 } 389 }
388 390