mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
[gdb/testsuite] Fix typo in gdb.multi/multi-arch-exec.exp
With gdb.multi/multi-arch-exec.exp I run into: ... Running src/gdb/testsuite/gdb.multi/multi-arch-exec.exp ... ERROR: tcl error sourcing src/gdb/testsuite/gdb.multi/multi-arch-exec.exp. ERROR: wrong # args: extra words after "else" clause in "if" command while executing "if [istarget "powerpc64*-*-*"] { set march "-m64" } else if [istarget "s390*-*-*"] { set march "-m31" } else { set march "-m32" }" ... Fix the else if -> elseif typo. Tested on x86_64-linux.
This commit is contained in:
parent
a561456f2d
commit
e1ccbd6d3a
@ -73,7 +73,7 @@ proc append_arch2_options {options_var} {
|
||||
|
||||
if [istarget "powerpc64*-*-*"] {
|
||||
set march "-m64"
|
||||
} else if [istarget "s390*-*-*"] {
|
||||
} elseif [istarget "s390*-*-*"] {
|
||||
set march "-m31"
|
||||
} else {
|
||||
set march "-m32"
|
||||
|
Loading…
Reference in New Issue
Block a user