Made sure that MessageBundle files are copied over
to Savant binary directories, now that Savant is using these internationalization files.
This commit is contained in:
parent
392b2b180a
commit
1e6ab8eeec
1 changed files with 18 additions and 2 deletions
20
build.xml
20
build.xml
|
@ -208,13 +208,20 @@
|
||||||
<param name="mybin" value="${savantbin}"/>
|
<param name="mybin" value="${savantbin}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
|
||||||
<!-- Copy the .rtf files; they're needed resources: -->
|
<!-- Copy over Savant-specific resources: -->
|
||||||
<copy todir="${savantbin}/org/thdl/savant">
|
<copy todir="${savantbin}/org/thdl/savant">
|
||||||
<fileset dir="${source}">
|
<fileset dir="${source}">
|
||||||
<include name="*savant*"/>
|
<include name="*savant*"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<!-- Copy over Savant-specific resources: -->
|
||||||
|
<copy todir="${savantbin}">
|
||||||
|
<fileset dir="${source}">
|
||||||
|
<include name="MessageBundle*"/>
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
|
||||||
<antcall target="copy-ini-files-to-bin-dir-for-jarring">
|
<antcall target="copy-ini-files-to-bin-dir-for-jarring">
|
||||||
<param name="mybin" value="${savantbin}"/>
|
<param name="mybin" value="${savantbin}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
@ -341,7 +348,6 @@
|
||||||
<param name="my.included.source.file"
|
<param name="my.included.source.file"
|
||||||
value="org/thdl/tib/text/TibetanHTML.java"/>
|
value="org/thdl/tib/text/TibetanHTML.java"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
|
||||||
<antcall target="compile-classes-accessed-by-reflection">
|
<antcall target="compile-classes-accessed-by-reflection">
|
||||||
<param name="mybin" value="${qdbin}"/>
|
<param name="mybin" value="${qdbin}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
@ -1055,6 +1061,16 @@
|
||||||
<param name="my.included.source.file"
|
<param name="my.included.source.file"
|
||||||
value="org/thdl/media/SmartQT4JPlayer.java"/>
|
value="org/thdl/media/SmartQT4JPlayer.java"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
<antcall target="our-internal-javac-task">
|
||||||
|
<param name="mybin" value="${savantbin}"/>
|
||||||
|
<param name="my.included.source.file"
|
||||||
|
value="org/thdl/media/SmartJMFPlayer.java"/>
|
||||||
|
</antcall>
|
||||||
|
<antcall target="our-internal-javac-task">
|
||||||
|
<param name="mybin" value="${savantbin}"/>
|
||||||
|
<param name="my.included.source.file"
|
||||||
|
value="org/thdl/media/SmartQT4JPlayer.java"/>
|
||||||
|
</antcall>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue