Skip to content

Commit 615357e

Browse files
Making zips is relative to 'schematron' directory.
1 parent 9b6df09 commit 615357e

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

trunk/schematron/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist

trunk/schematron/build-xslt2.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,20 +238,25 @@
238238
<!-- Do ZIP -->
239239
<target name="make-zips" >
240240
<zip destfile="${dist.dir}/iso-schematron-xslt1.zip">
241-
<fileset dir="."
241+
<fileset dir="${basedir}/code"
242242
includes="iso_abstract_expand.xsl, iso_dsdl_include.xsl, iso_schematron_skeleton_for_xslt1.xsl, iso_svrl_for_xslt1.xsl,
243243
iso_schematron_message.xsl, readme.txt, schematron-skeleton-api.htm,
244244
ExtractSchFromRNG.xsl, ExtractSchFromXSD.xsl" />
245245
</zip>
246246

247247
<zip destfile="${dist.dir}/iso-schematron-xslt2.zip">
248-
<fileset dir="."
248+
<fileset dir="${basedir}/code"
249249
includes="iso_abstract_expand.xsl, iso_dsdl_include.xsl, iso_schematron_skeleton_for_saxon.xsl, iso_svrl_for_xslt2.xsl,
250250
iso_schematron_message_xslt2.xsl, readme.txt, schematron-skeleton-api.htm,
251-
sch-messages-en.xhtml, sch-messages-de.xhtml, sch-messages-fr.xhtml, sch-messages-nl.xhtml,
252-
sch-messages-cs.xhtml,
251+
sch-messages-*.xhtml,
253252
ExtractSchFromRNG-2.xsl, ExtractSchFromXSD-2.xsl " />
254253
</zip>
255254
</target>
255+
256+
<!-- Utility targets. -->
257+
258+
<target name="echoproperties">
259+
<echoproperties />
260+
</target>
256261

257-
</project>
262+
</project>

trunk/schematron/build.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,18 @@
147147
<!-- Do ZIP -->
148148
<target name="make-zips" >
149149
<zip destfile="${dist.dir}/iso-schematron-xslt1.zip">
150-
<fileset dir="."
150+
<fileset dir="${basedir}/code"
151151
includes="iso_abstract_expand.xsl, iso_dsdl_include.xsl, iso_schematron_skeleton_for_xslt1.xsl, iso_svrl_for_xslt1.xsl,
152152
iso_schematron_message.xsl, readme.txt, schematron-skeleton-api.htm,
153153
ExtractSchFromRNG.xsl, ExtractSchFromXSD.xsl" />
154154
</zip>
155155

156156
</target>
157+
158+
<!-- Utility targets. -->
159+
160+
<target name="echoproperties">
161+
<echoproperties />
162+
</target>
157163

158-
</project>
164+
</project>

0 commit comments

Comments
 (0)