diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | examples/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-09-16 Mark Wielaard <mark@klomp.org> + + * examples/Makefile.am (JCOMPILER): Add tools.zip for ecj. + 2007-09-14 Roman Kennke <roman@kennke.org> * .classpath: Include javah in Eclipse build. diff --git a/examples/Makefile.am b/examples/Makefile.am index 235c3819e..7f8e53988 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -9,7 +9,7 @@ GLIBJ_CLASSPATH='$(top_builddir)/lib/glibj.zip' #JCOMPILER = $(JIKES) -bootclasspath '' -extdirs '' -sourcepath '' --classpath $(top_builddir)/lib:. #else if FOUND_ECJ -JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -bootclasspath $(GLIBJ_CLASSPATH) -classpath . +JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -bootclasspath $(GLIBJ_CLASSPATH) -classpath '$(top_builddir)/tools/tools.zip' else if FOUND_JAVAC JCOMPILER = $(JAVAC) -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath '$(top_builddir)/tools/tools.zip' |