diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2006-10-24 18:03:33 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2006-10-24 18:03:33 +0000 |
commit | 54df2ab823c74e470e2ece7c33d8a8f9f7ba6176 (patch) | |
tree | 6fade324acd4fb38672c5eaf13ffc2a72f2afd42 /tools/toolwrapper.c | |
parent | 83edeaa6f879addbc83c61aee48264b89661dda1 (diff) | |
download | classpath-54df2ab823c74e470e2ece7c33d8a8f9f7ba6176.tar.gz |
2006-10-24 Thomas Fitzsimmons <fitzsim@redhat.com>
* tools/Makefile.am: Add ASM_JAR define to each tool's CFLAGS.
* tools/toolwrapper.c (main): Set bootclasspath, not classpath.
Add ASM_JAR to bootclasspath.
Diffstat (limited to 'tools/toolwrapper.c')
-rw-r--r-- | tools/toolwrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/toolwrapper.c b/tools/toolwrapper.c index 9f4720ab9..dd23286c3 100644 --- a/tools/toolwrapper.c +++ b/tools/toolwrapper.c @@ -136,7 +136,7 @@ main (int argc, const char** argv) goto destroy; } - vm_args.options[vm_args.nOptions++].optionString = "-Djava.class.path=" TOOLS_ZIP; + vm_args.options[vm_args.nOptions++].optionString = "-Xbootclasspath/p:" TOOLS_ZIP ASM_JAR; } /* Terminate vm_args.options with a NULL element. */ |