Commit 323941f6 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

compat.exp (compat-execute): Fix logic error in last change.

	* lib/compat.exp (compat-execute): Fix logic error in last
	change.

From-SVN: r58962
parent ad980a7b
2002-11-09 Hans-Peter Nilsson <hp@bitrange.com>
* lib/compat.exp (compat-execute): Fix logic error in last
change.
2002-11-09 Neil Booth <neil@daikokuya.co.uk> 2002-11-09 Neil Booth <neil@daikokuya.co.uk>
* gcc.dg/cpp/trad/assembler.S, gcc.dg/cpp/trad/directive.c: Update. * gcc.dg/cpp/trad/assembler.S, gcc.dg/cpp/trad/directive.c: Update.
......
...@@ -231,7 +231,7 @@ proc compat-execute { src1 use_alt } { ...@@ -231,7 +231,7 @@ proc compat-execute { src1 use_alt } {
set files [glob -nocomplain *.o] set files [glob -nocomplain *.o]
if { $files != "" } { if { $files != "" } {
foreach objfile $files { foreach objfile $files {
if { [info exists gluefile] && $objfile != $gluefile } { if { ![info exists gluefile] || $objfile != $gluefile } {
eval "remote_file build delete $objfile" eval "remote_file build delete $objfile"
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment