Skip to content

Commit

Permalink
Merge pull request w3c#15 from ndw/bfix
Browse files Browse the repository at this point in the history
Fix errors in stylesheet execution
  • Loading branch information
ndw authored Dec 9, 2020
2 parents 6789632 + e3530f8 commit 197db81
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions specifications/xslt-40/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@
<jvmarg value="-Xmx16g"/>
<jvmarg value="-XX:MetaspaceSize=4g"/>
<jvmarg value="-XX:MaxMetaspaceSize=8g"/>
<arg value="${highlight.input}"/>
<arg value="-s:style/highlighter.xsl"/>
<arg value="-s:${highlight.input}"/>
<arg value="-xsl:style/highlighter.xsl"/>
<arg value="-o:${highlight.output}"/>
</java>
</target>
Expand Down Expand Up @@ -276,8 +276,8 @@
<jvmarg value="-Xmx16g"/>
<jvmarg value="-XX:MetaspaceSize=4g"/>
<jvmarg value="-XX:MaxMetaspaceSize=8g"/>
<arg value="${merged-spec.xml}"/>
<arg value="-s:style/xslt-diff.xsl"/>
<arg value="-s:${merged-spec.xml}"/>
<arg value="-xsl:style/xslt-diff.xsl"/>
<arg value="-o:${build.dir}/rendered-diff.xml"/>
<arg value="baseline=${baseline}"/>
<arg value="diff.baseline.date.string=${baseline-date}"/>
Expand All @@ -304,8 +304,8 @@
<jvmarg value="-Xmx16g"/>
<jvmarg value="-XX:MetaspaceSize=4g"/>
<jvmarg value="-XX:MaxMetaspaceSize=8g"/>
<arg value="${build.dir}/rendered-diff.xml"/>
<arg value="-s:style/xsltdiff-cleanup.xsl"/>
<arg value="-s:${build.dir}/rendered-diff.xml"/>
<arg value="-xsl:style/xsltdiff-cleanup.xsl"/>
<arg value="-o:${build.dir}/cleaned-up-diff.xml"/>
</java>
<!--
Expand Down Expand Up @@ -346,8 +346,8 @@
<jvmarg value="-Xmx16g"/>
<jvmarg value="-XX:MetaspaceSize=4g"/>
<jvmarg value="-XX:MaxMetaspaceSize=8g"/>
<arg value="${errata.xml}"/>
<arg value="-s:${spec.style}"/>
<arg value="-s:${errata.xml}"/>
<arg value="-xsl:${spec.style}"/>
<arg value="-o:${dist.dir}/errata.html"/>
</java>
</target>
Expand Down

0 comments on commit 197db81

Please sign in to comment.