fix naming of man page
The title of the generated man page was ending up as something like IO::FILE=IO(0XA719C0)(1) Also, with newer perls (e.g. v5.22.1), pod2man requires --name if used within a pipeline. Closes #18. https://github.com/aspiers/stow/issues/18
This commit is contained in:
parent
f5e12670d6
commit
7ede3c8df0
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ cpanm:
|
||||||
|
|
||||||
doc/stow.8: bin/stow.in Makefile.am
|
doc/stow.8: bin/stow.in Makefile.am
|
||||||
[ -d doc ] || mkdir doc # required in vpath mode
|
[ -d doc ] || mkdir doc # required in vpath mode
|
||||||
$(edit) < $< | pod2man > $@
|
$(edit) < $< | pod2man --name stow --section 8 > $@
|
||||||
|
|
||||||
# We use automake's built-in rule to generate stow.info. The built-in
|
# We use automake's built-in rule to generate stow.info. The built-in
|
||||||
# rules would also generate doc/stow.html and doc/stow.pdf, but after
|
# rules would also generate doc/stow.html and doc/stow.pdf, but after
|
||||||
|
|
Loading…
Reference in a new issue