summaryrefslogtreecommitdiff
path: root/docs-xml/scripts/find_missing_manpages
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-09-26 01:31:37 +0200
committerJelmer Vernooij <jelmer@samba.org>2012-09-26 07:58:31 +0200
commit718317ecef54d90070b29657f613e39892e38d10 (patch)
tree4627e2807bcfb88bc8605e7266cd5619ddbbfdfa /docs-xml/scripts/find_missing_manpages
parent05ba1fe418035e44c131fc76b5e62268b433eadc (diff)
downloadsamba-718317ecef54d90070b29657f613e39892e38d10.tar.gz
samba-718317ecef54d90070b29657f613e39892e38d10.tar.bz2
samba-718317ecef54d90070b29657f613e39892e38d10.zip
undocumented: Drop extension from helper scripts.
Diffstat (limited to 'docs-xml/scripts/find_missing_manpages')
-rwxr-xr-xdocs-xml/scripts/find_missing_manpages39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs-xml/scripts/find_missing_manpages b/docs-xml/scripts/find_missing_manpages
new file mode 100755
index 0000000000..cd8ed87596
--- /dev/null
+++ b/docs-xml/scripts/find_missing_manpages
@@ -0,0 +1,39 @@
+#!/usr/bin/perl
+
+my %doc;
+
+$invar = 0;
+
+$topdir = (shift @ARGV) or $topdir = ".";
+
+$progs = "";
+
+open(IN, "$topdir/Makefile.in");
+while(<IN>) {
+ if($invar && /^([ \t]*)(.*?)([\\])$/) {
+ $progs.=" " . $2;
+ if($4) { $invar = 1; } else { $invar = 0; }
+ } elsif(/^([^ ]*)_PROGS([0-9]*) = (.*?)([\\])$/) {
+ $progs.=" " . $3;
+ if($4) { $invar = 1; }
+ } else { $invar = 0; }
+}
+
+$progs =~ s/@([^@]+)@//g;
+
+foreach(split(/bin\//, $progs)) {
+ next if($_ eq " ");
+ s/ //g;
+
+ $f = $_;
+
+ $found = 0;
+
+ for($i = 0; $i < 9; $i++) {
+ if(-e "manpages/$f.$i.xml") { $found = 1; }
+ }
+
+ if(!$found) {
+ print "'$f' does not have a manpage\n";
+ }
+}