mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
* lib/java.exp (java_init): Ignore $GCJ if it is empty.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2009-07-06 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* lib/java.exp (java_init): Ignore $GCJ if it is empty.
|
||||
|
||||
2009-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* lib/gdbserver-support.exp (gdbserver_start): Loop spawning
|
||||
|
@ -45,7 +45,7 @@ proc java_init { args } {
|
||||
if [info exists TOOL_EXECUTABLE] {
|
||||
set GCJ_UNDER_TEST $TOOL_EXECUTABLE;
|
||||
} else {
|
||||
if [info exists env(GCJ)] {
|
||||
if { [info exists env(GCJ)] && $env(GCJ) != "" } {
|
||||
set GCJ_UNDER_TEST $env(GCJ)
|
||||
} else {
|
||||
global tool_root_dir
|
||||
|
Reference in New Issue
Block a user