Correct stupid mistake in installation target of Makefile.

This commit is contained in:
Tony Garnock-Jones 2008-12-10 15:40:10 +00:00
parent 92a0106200
commit 3a939316b4
1 changed files with 1 additions and 1 deletions

View File

@ -163,6 +163,6 @@ install: all docs_all
for section in 1 5; do \
mkdir -p $(MAN_DIR)/man$$section; \
for manpage in docs/*.$$section.pod; do \
cp $$manpage $(MAN_DIR)/man$$section; \
cp docs/`basename $$manpage .pod`.gz $(MAN_DIR)/man$$section; \
done; \
done