summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-05-26 18:04:00 +0100
committerSimon MacMullen <simon@rabbitmq.com>2011-05-26 18:04:00 +0100
commit0f6772c73ad979d1e1dcb523f961701cbb44a110 (patch)
tree5a0719877a754c423af803ef1074497ca1e1bb2e /Makefile
parent565e7c0d4b53de2fa4dbce8ea89ec14e7ca262be (diff)
downloadrabbitmq-server-git-0f6772c73ad979d1e1dcb523f961701cbb44a110.tar.gz
Don't validate against the docbook DTD when building the usage erl - we don't need docbook installed to build the server, but without this --novalid we instead go to the internet if docbook is not installed, which can make building flaky.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e376b4ac4d..a27d3138f8 100644
--- a/Makefile
+++ b/Makefile
@@ -242,7 +242,7 @@ distclean: clean
# Do not fold the cp into previous line, it's there to stop the file being
# generated but empty if we fail
$(SOURCE_DIR)/%_usage.erl:
- xsltproc --stringparam modulename "`basename $@ .erl`" \
+ xsltproc --novalid --stringparam modulename "`basename $@ .erl`" \
$(DOCS_DIR)/usage.xsl $< > $@.tmp
sed -e 's/"/\\"/g' -e 's/%QUOTE%/"/g' $@.tmp > $@.tmp2
fold -s $@.tmp2 > $@.tmp3