summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliel C. Sardanons <eliels@gmail.com>2008-11-04 20:12:41 +0000
committerEliel C. Sardanons <eliels@gmail.com>2008-11-04 20:12:41 +0000
commit250a60958d5dd059f667299b1fa03922d9b7c558 (patch)
tree259d0ceb26128ae2e41605cda12fd74915f98575
parent89a678df601635d7f3cb9d7013b1811eb2e8a422 (diff)
We need to pass the DTD to xmlstarlet to validate against it the XML.
(I thought it was being read within the DOCTYPE definition inside the XML). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154329 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 98fc69a2a..f9b3ded03 100644
--- a/Makefile
+++ b/Makefile
@@ -504,7 +504,7 @@ ifeq ($(XMLSTARLET),:)
@echo "--- Please install xmlstarlet to validate the documentation ---"
@echo "---------------------------------------------------------------"
else
- $(XMLSTARLET) val $<
+ $(XMLSTARLET) val -d doc/appdocsxml.dtd $<
endif
update: