diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-09 23:24:01 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-09 23:24:01 +0000 |
commit | 50eeec2efca1eaf9027113a1b76bf7f1ea08815d (patch) | |
tree | 15f2f485402e5a2d9be10dfc0fa69c423f29dfbd /gcc/testsuite/lib/compat.exp | |
parent | a54a826414383b3097b47f071edc5881f681b1fd (diff) | |
download | gcc-50eeec2efca1eaf9027113a1b76bf7f1ea08815d.tar.gz |
* lib/compat.exp (compat-execute): Fix logic error in last
change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58962 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/lib/compat.exp')
-rw-r--r-- | gcc/testsuite/lib/compat.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/lib/compat.exp b/gcc/testsuite/lib/compat.exp index 21c098eb00f..89cf5ae5e0f 100644 --- a/gcc/testsuite/lib/compat.exp +++ b/gcc/testsuite/lib/compat.exp @@ -231,7 +231,7 @@ proc compat-execute { src1 use_alt } { set files [glob -nocomplain *.o] if { $files != "" } { foreach objfile $files { - if { [info exists gluefile] && $objfile != $gluefile } { + if { ![info exists gluefile] || $objfile != $gluefile } { eval "remote_file build delete $objfile" } } |