mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-26 07:19:16 +08:00
[gdb/testsuite] Fix typo in tcl_version_at_least
In tcl_version_at_least we compare a minor against a major version number: ... } elseif { $tcl_version_major == $major \ && $tcl_version_major >= $minor } { ... Fix this by using $tcl_version_minor in the comparison instead. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2019-08-05 Tom de Vries <tdevries@suse.de> * lib/gdb.exp (tcl_version_at_least): Fix typo.
This commit is contained in:
@ -1111,7 +1111,7 @@ proc tcl_version_at_least { major minor } {
|
||||
if { $tcl_version_major > $major } {
|
||||
return 1
|
||||
} elseif { $tcl_version_major == $major \
|
||||
&& $tcl_version_major >= $minor } {
|
||||
&& $tcl_version_minor >= $minor } {
|
||||
return 1
|
||||
} else {
|
||||
return 0
|
||||
|
Reference in New Issue
Block a user