forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instead of asking the user to copy and paste a small perl script from the documentation, just distribute the perl script in the scripts directory. Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
- Loading branch information
Matthew Wilcox
authored and
Jonathan Corbet
committed
Feb 13, 2018
1 parent
dcb50d9
commit 5b229fb
Showing
2 changed files
with
30 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/perl | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# | ||
# Author: Mauro Carvalho Chehab <mchehab@s-opensource.com> | ||
# | ||
# Produce manpages from kernel-doc. | ||
# See Documentation/doc-guide/kernel-doc.rst for instructions | ||
|
||
if ($#ARGV < 0) { | ||
die "where do I put the results?\n"; | ||
} | ||
|
||
mkdir $ARGV[0],0777; | ||
$state = 0; | ||
while (<STDIN>) { | ||
if (/^\.TH \"[^\"]*\" 9 \"([^\"]*)\"/) { | ||
if ($state == 1) { close OUT } | ||
$state = 1; | ||
$fn = "$ARGV[0]/$1.9"; | ||
print STDERR "Creating $fn\n"; | ||
open OUT, ">$fn" or die "can't open $fn: $!\n"; | ||
print OUT $_; | ||
} elsif ($state != 0) { | ||
print OUT $_; | ||
} | ||
} | ||
|
||
close OUT; |