stub for windows gettext script

This commit is contained in:
zzz
2009-10-20 16:00:57 +00:00
parent 45a59f009b
commit 77d45e7a3a

View File

@ -75,11 +75,17 @@
<ant target="war" />
<!-- Update the messages_*.po files.
We need to supply something for windows, and then change the fail property to true,
or else not run this on windows -->
<exec executable="sh" failifexecutionfails="false" >
We need to supply the bat file for windows, and then change the fail property to true -->
<exec executable="sh" osfamily="unix" failifexecutionfails="false" >
<arg value="./bundle-messages.sh" />
</exec>
<exec executable="sh" osfamily="mac" failifexecutionfails="false" >
<arg value="./bundle-messages.sh" />
</exec>
<exec executable="cmd" osfamily="windows" failifexecutionfails="false" >
<arg value="/c" />
<arg value="bundle-messages.bat" />
</exec>
<!-- jar again to get the latest messages_*.class files -->
<jar destfile="./build/routerconsole.jar" basedir="./build/obj" includes="**/*.class" update="true" />
</target>