diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-05-01 04:40:55 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-05-01 13:10:13 +0200 |
commit | 4abc5c945e305df24476f2cc93b63353c3dd922e (patch) | |
tree | f45eb730ee080cf3cab2db1f6d4e6e497f99c9c5 /docs-xml/scripts | |
parent | 6e48495ee715156a292d96d9fa87ec7ff17d02f6 (diff) | |
download | samba-4abc5c945e305df24476f2cc93b63353c3dd922e.tar.gz |
Fix 'make undocumented' (by hardcoding the source path, now that the docs
live in the same git repo)
Diffstat (limited to 'docs-xml/scripts')
-rwxr-xr-x | docs-xml/scripts/find_missing_manpages.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-xml/scripts/find_missing_manpages.pl b/docs-xml/scripts/find_missing_manpages.pl index 39bf7983ff5..90d9f6abe8c 100755 --- a/docs-xml/scripts/find_missing_manpages.pl +++ b/docs-xml/scripts/find_missing_manpages.pl @@ -32,7 +32,7 @@ foreach(split(/bin\//, $progs)) { $found = 0; for($i = 0; $i < 9; $i++) { - if(-e "manpages/$f.$i.xml") { $found = 1; } + if(-e "manpages-3/$f.$i.xml") { $found = 1; } } if(!$found) { |