From 3a939316b4ac447e67f7028b35b9ccef13d82539 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 10 Dec 2008 15:40:10 +0000 Subject: [PATCH] Correct stupid mistake in installation target of Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a7415f0000..aaa56b9299 100644 --- a/Makefile +++ b/Makefile @@ -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