diff options
author | Keith Packard <keithp@keithp.com> | 2010-07-27 19:29:38 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-27 19:29:38 -0700 |
commit | 554a97ef455c801dcab825815f44520f96f4c3f3 (patch) | |
tree | 08e3d0b8f6ba23e98c6e0377720c31f5cca72318 | |
parent | 3784578a40dcc61f447435cfdf22e13c409cb9c0 (diff) |
Force java source encoding to UTF-8
-rw-r--r-- | ao-tools/altosui/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/Makefile b/ao-tools/altosui/Makefile index 4068eebe..39d1a70c 100644 --- a/ao-tools/altosui/Makefile +++ b/ao-tools/altosui/Makefile @@ -23,7 +23,7 @@ JAVAFLAGS=-Xlint:unchecked all: $(CLASSFILES) altosui.jar .java.class: - javac -cp "$(CLASSPATH)" $(JAVAFLAGS) $*.java + javac -encoding UTF8 -classpath "$(CLASSPATH)" $(JAVAFLAGS) $*.java altosui.jar: $(CLASSFILES) Manifest.txt jar cfm $@ altosui/Manifest.txt altosui/*.class libaltosJNI/*.class |