From 352f134a2e9bba7cffcae037a8c3910cefe07147 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Sat, 26 Jul 2008 21:07:53 -0700 Subject: [PATCH] Compile all Java sources in jgit as UTF-8 We use a UTF-8 encoding in our source files whenever possible. If the compiler assumes ASCII we sometimes get warnings parsing copyright information for authors whose names aren't representable in US-ASCII. Signed-off-by: Shawn O. Pearce --- make_jgit.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/make_jgit.sh b/make_jgit.sh index 89df80cb..13d0e327 100755 --- a/make_jgit.sh +++ b/make_jgit.sh @@ -58,6 +58,7 @@ do xargs javac \ -source 1.5 \ -target 1.5 \ + -encoding UTF-8 \ -g \ -d ../bin2) || die "Building $p failed." CLASSPATH="$CLASSPATH:$R/$p/bin2" -- 2.11.4.GIT