@leroysheep / CrazyWebTemps / commits / 0cc34eb2a0

Fix manpage generation

Recent Documentation/Makefile change broke the automated manpage generation.

Junio C Hamano committed Aug 8, 2006 at 18:21 UTC 0cc34eb2a0f5056b591e6d5bd8aecaf754f8d963
1 file changed +5 -1
dodoc.sh
+5 -1
index 15926f361d..d6571ba7c6 100755 --- a/dodoc.sh +++ b/dodoc.sh @@ -90,7 +90,11 @@ cd ../doc-htmlpages && fi cd ../Documentation && -make man1="$DOCREPO/doc-manpages/man1" man7="$DOCREPO/doc-manpages/man7" \ +make \ + man1="$DOCREPO/doc-manpages/man1" \ + man7="$DOCREPO/doc-manpages/man7" \ + man1dir="$DOCREPO/doc-manpages/man1" \ + man7dir="$DOCREPO/doc-manpages/man7" \ install >../:man.log 2>&1 && cd ../doc-manpages &&