aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-05-05 19:11:18 +0000
committerKenny Root <kenny@the-b.org>2009-05-05 19:11:18 +0000
commit8f9c8b169a3a067a72a8a58eb5e6cff14a339840 (patch)
treea4973ae71cbd7e43331675b5b1404d67ae468d7c /build.xml
parentdd2564469d1955837ec11c0ce0fd463bde1b6756 (diff)
downloadconnectbot-8f9c8b169a3a067a72a8a58eb5e6cff14a339840.tar.gz
connectbot-8f9c8b169a3a067a72a8a58eb5e6cff14a339840.tar.bz2
connectbot-8f9c8b169a3a067a72a8a58eb5e6cff14a339840.zip
Tweak build.xml for new variable names and to quelch complaints about UTF-8 comments
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@216 df292f66-193f-0410-a5fc-6d59da041ff2
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index dbbd930..2c2ca6a 100644
--- a/build.xml
+++ b/build.xml
@@ -157,7 +157,7 @@
<!-- Compile this project's .java files into .class files. -->
<target name="compile" depends="resource-src, aidl">
- <javac encoding="ascii" target="1.5" debug="true" extdirs=""
+ <javac encoding="utf8" target="1.5" debug="true" extdirs=""
destdir="${out-classes}"
bootclasspathref="android.target.classpath">
<src path="${source-folder}" />
@@ -298,7 +298,7 @@
<delete file="svnlog.out"/>
- <replaceregexp file="${resource-dir}/values/strings.xml" encoding="${encoding}" match='(\x3Cstring name="msg_version">)[^\x3C]*(\x3C/string>)'
+ <replaceregexp file="${resource-folder}/values/strings.xml" encoding="utf8" match='(\x3Cstring name="msg_version">)[^\x3C]*(\x3C/string>)'
replace='\1${ant.project.name} ${manifest.android:versionName} (r${Revision} ${build.date})\2' />
<echo>Updated "msg_version" to: ${ant.project.name} ${manifest.android:versionName} (r${Revision} ${build.date})</echo>