summaryrefslogtreecommitdiff
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
commitba598037cc46d056276a19c6b5d8acf3c103e790 (patch)
tree5a0719877a754c423af803ef1074497ca1e1bb2e
parent5dee225836413562c0717932acfee8b9348048c8 (diff)
downloadrabbitmq-server-ba598037cc46d056276a19c6b5d8acf3c103e790.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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e376b4ac..a27d3138 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