diff options
author | David Goulet <dgoulet@torproject.org> | 2020-07-14 09:02:03 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-07-14 09:02:03 -0400 |
commit | 456be93956d1f0acfa50dc3bc19ac6e2b9d2d77a (patch) | |
tree | ac12639e1687e915df8330aa0584887f2725efad /scripts/maint | |
parent | 29a474294c968218576ec6d912a94b8187a1e47b (diff) | |
download | tor-456be93956d1f0acfa50dc3bc19ac6e2b9d2d77a.tar.gz tor-456be93956d1f0acfa50dc3bc19ac6e2b9d2d77a.zip |
doc: Move manpages into doc/man/
Closes #40044
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'scripts/maint')
-rw-r--r-- | scripts/maint/checkOptionDocs.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maint/checkOptionDocs.pl.in b/scripts/maint/checkOptionDocs.pl.in index 6533c762c5..bb8008c2e8 100644 --- a/scripts/maint/checkOptionDocs.pl.in +++ b/scripts/maint/checkOptionDocs.pl.in @@ -39,7 +39,7 @@ loadTorrc("@abs_top_srcdir@/src/config/torrc.sample.in", \%torrcSampleOptions); # Try to figure out what's in the man page. my $considerNextLine = 0; -open(F, "@abs_top_srcdir@/doc/tor.1.txt") or die; +open(F, "@abs_top_srcdir@/doc/man/tor.1.txt") or die; while (<F>) { if (m!^(?:\[\[([A-za-z0-9_]+)\]\] *)?\*\*([A-Za-z0-9_]+)\*\*!) { $manPageOptions{$2} = 1; |