- Suppress the XML declaration emitted by the Schematron XSLT

This commit is contained in:
Gabor Kovesdan 2013-03-15 08:40:03 +00:00
parent 1a1367cdbc
commit c1ddd50c4c
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/xml-tools/; revision=41223

View file

@ -582,7 +582,7 @@ lint validate: ${SRCS} ${schxslts}
.for sch in ${schxslts}
@( out=`${XSLTPROC} ${sch} ${DOC}.parsed.xml`; \
if [ -n "$${out}" ]; then \
echo "$${out}"; \
echo "$${out}" | ${GREP} -v '^<?xml'; \
false; \
fi )
.endfor