diff options
author | Keith Packard <keithp@keithp.com> | 2010-09-05 01:23:53 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-09-05 01:23:53 -0700 |
commit | 38e1d87c8d449866faac026577fefa9a118428cb (patch) | |
tree | 95d2e3a61a19b546271db7975b63c386a2de3e9e | |
parent | 9941b05a1d03dafd6cd899b5fe999ed769efb1d6 (diff) |
altosui: Use local .class files in the classpath
This ensures that compiling only a few changed files will
locate the old .class files instead of using a stale .jar file.
-rw-r--r-- | ao-tools/altosui/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/Makefile.am b/ao-tools/altosui/Makefile.am index bc8dbc0d..98482823 100644 --- a/ao-tools/altosui/Makefile.am +++ b/ao-tools/altosui/Makefile.am @@ -1,7 +1,7 @@ JAVAROOT=classes AM_JAVACFLAGS=-encoding UTF-8 -CLASSPATH_ENV=CLASSPATH="classes/altosui/*:../libaltos/libaltosJNI/*:$(FREETTS)/*:/usr/share/java/*" +CLASSPATH_ENV=CLASSPATH=".:classes:../libaltos:$(FREETTS)/*:/usr/share/java/*" altosui_JAVA = \ AltosChannelMenu.java \ |