diff options
author | Keith Packard <keithp@keithp.com> | 2010-07-29 10:48:52 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-29 10:48:52 -0700 |
commit | 669c5f52abb972a82ed6efbee7a8c7d20afb5cd0 (patch) | |
tree | 4666f233411f0b249e77b00bd896dbdf1db2d3eb | |
parent | efa0e034a161f4852947cbac06537d6ba4422a0e (diff) |
libaltos: build with java src encoding UTF8
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | ao-tools/libaltos/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/libaltos/Makefile b/ao-tools/libaltos/Makefile index 0bbd304c..fa5127eb 100644 --- a/ao-tools/libaltos/Makefile +++ b/ao-tools/libaltos/Makefile @@ -51,7 +51,7 @@ JAVAFLAGS=-Xlint:unchecked all: libaltos.$(LIBEXT) cjnitest $(CLASSFILES) .java.class: - javac -cp "$(CLASSPATH)" $(JAVAFLAGS) $*.java + javac -encoding UTF8 -classpath "$(CLASSPATH)" $(JAVAFLAGS) $*.java CFLAGS=$(OS_CFLAGS) -O0 -g -I. |