summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2007-09-12 09:40:27 +0000
committerDalibor Topic <robilad@yahoo.com>2007-09-12 09:40:27 +0000
commit4ec5b1f697e4d03086f81e860f7a1de5d9cdbc68 (patch)
tree867d1d5ee4f40eeef758536c0b28f15af58bb834 /examples
parent82bdf5ea5b628a257f3103e7505c963f9d2f97db (diff)
downloadclasspath-4ec5b1f697e4d03086f81e860f7a1de5d9cdbc68.tar.gz
2007-09-12 Dalibor Topic <robilad@kaffe.org>
* examples/Makefile.am, tools/Makefile.am (GLIBJ_CLASSPATH): Removed unnecessary paths to avoid using unix path separators on windows. (JCOMPILER) Don't add '.' to classpath for javac. Fixes the build on Cygwin.
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 8d619e14d..235c3819e 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,5 +1,5 @@
## Input file for automake to generate the Makefile.in used by configure
-GLIBJ_CLASSPATH='$(top_builddir)/lib':'$(top_builddir)/lib/glibj.zip':'$(top_builddir)/tools/tools.zip'
+GLIBJ_CLASSPATH='$(top_builddir)/lib/glibj.zip'
# Setup the compiler to use the GNU Classpath library we just build
#if FOUND_GCJ
@@ -12,7 +12,7 @@ if FOUND_ECJ
JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -bootclasspath $(GLIBJ_CLASSPATH) -classpath .
else
if FOUND_JAVAC
-JCOMPILER = $(JAVAC) -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath .
+JCOMPILER = $(JAVAC) -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath '$(top_builddir)/tools/tools.zip'
else
error dunno how to setup the JCOMPILER and compile
#endif