- Use the :T modifier instead of :C

Submitted by:	hrs
This commit is contained in:
Gabor Kovesdan 2013-06-21 17:57:26 +00:00
parent 6ab2cc267d
commit 2d59309da5
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/db5/; revision=41997

View file

@ -244,10 +244,10 @@ all: ${SRCS} ${_docs}
.if defined(SCHEMATRONS)
.for sch in ${SCHEMATRONS}
schxslts+= ${sch:C@.*/@@}.xsl
CLEANFILES+= ${sch:C@.*/@@}.xsl
schxslts+= ${sch:T}.xsl
CLEANFILES+= ${sch:T}.xsl
${sch:C@.*/@@}.xsl: ${sch}
${sch:T}.xsl: ${sch}
${XSLTPROC} --param allow-foreign "true" ${XSLSCH} ${.ALLSRC} > ${.TARGET}
.endfor
.endif