summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonyg@lshift.net>2008-12-10 15:40:10 +0000
committerTony Garnock-Jones <tonyg@lshift.net>2008-12-10 15:40:10 +0000
commiteeb0ab8d9b87e8e8b02f3d2dc5cf10b59fc4e53b (patch)
tree8adf807dba3161aa5a52388bb1f09fc8c4e04e8b
parentd6275b3c4a7b12520d2a332eadcbd585b16e88ad (diff)
downloadrabbitmq-server-eeb0ab8d9b87e8e8b02f3d2dc5cf10b59fc4e53b.tar.gz
Correct stupid mistake in installation target of Makefile.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a7415f00..aaa56b92 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