Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2014-03-26 19:17:35 +0400
committerMichal Čihař <michal@cihar.com>2014-03-26 19:17:35 +0400
commitc3633bef2f817273ca16604eff5eac8bbed44398 (patch)
treeb3265257a6b665db68bc7cc74a6c4f4cde4a3744 /build.xml
parent91fa25a1eb17496da367397a0f0c9ffe40b0d593 (diff)
Use ant to build locales
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 1d1df8a94c..0db12921a0 100644
--- a/build.xml
+++ b/build.xml
@@ -129,6 +129,12 @@
</apply>
</target>
+ <target name="locales" description="Generate locales">
+ <exec executable="./scripts/generate-mo">
+ <arg line="--quiet" />
+ </exec>
+ </target>
+
<target name="lint" description="Perform syntax check of sourcecode files">
<apply executable="php" failonerror="true">
<arg value="-l" />
@@ -143,5 +149,5 @@
</apply>
</target>
- <target name="build" depends="clean,phpunit,pdepend,phpmd,phpcpd,phpcs,phpdoc,phploc,phpcb,lint,jshint"/>
+ <target name="build" depends="clean,phpunit,pdepend,phpmd,phpcpd,phpcs,phpdoc,phploc,phpcb,lint,jshint,locales"/>
</project>