summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-08-22 21:58:05 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-08-22 21:58:05 +0100
commit14f93cb22fb30793a28529a345cb29c85a61a27f (patch)
treef2ac44f62e837350cf5646e36c01ff38cf086fb6 /Makefile
parentf395ed28d9dbd1793a02112cf80d78a661f153e3 (diff)
downloadrabbitmq-server-git-14f93cb22fb30793a28529a345cb29c85a61a27f.tar.gz
make 'xmlto' invocation work with stricter getopt implementations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b6f4b7e5a9..46b1842505 100644
--- a/Makefile
+++ b/Makefile
@@ -237,7 +237,7 @@ distclean: clean
%.gz: %.xml $(DOCS_DIR)/examples-to-end.xsl
xmlto --version | grep -E '^xmlto version 0\.0\.([0-9]|1[1-8])$$' >/dev/null || opt='--stringparam man.indent.verbatims=0' ; \
xsltproc $(DOCS_DIR)/examples-to-end.xsl $< > $<.tmp && \
- xmlto man -o $(DOCS_DIR) $$opt $<.tmp && \
+ xmlto -o $(DOCS_DIR) $$opt man $<.tmp && \
gzip -f $(DOCS_DIR)/`basename $< .xml`
rm -f $<.tmp