1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Markus Koschany <apo@debian.org>
Date: Mon, 26 Mar 2018 15:31:20 +0200
Subject: encoding
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893144
Forwarded: no
---
build.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index 944b209..f262f10 100755
--- a/build.xml
+++ b/build.xml
@@ -52,7 +52,9 @@
<!-- Compile the sources -->
<target name="compile" depends="clean">
- <javac srcdir="${entagged_dir}" classpath="${entagged_base_dir}:/usr/share/ant/lib/junit.jar" excludes="entagged/junit/*" source="1.5"/>
+ <javac srcdir="${entagged_dir}"
+ classpath="${entagged_base_dir}:/usr/share/ant/lib/junit.jar"
+ excludes="entagged/junit/*" source="1.5" encoding="iso-8859-1"/>
<echo>
Entagged Tag editor is now fully compiled.
You can use either:
|