OSDN Git Service

* lib/gdb.exp (gdb_compile_pthreads): Fix "build_bin" typo.
authorKeith Seitz <keiths@redhat.com>
Tue, 3 Sep 2002 22:29:14 +0000 (22:29 +0000)
committerKeith Seitz <keiths@redhat.com>
Tue, 3 Sep 2002 22:29:14 +0000 (22:29 +0000)
        Use integer comparison instead of string comparison for testing
        whether binary was built.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index 1333754..d0f9ef2 100644 (file)
@@ -1,3 +1,9 @@
+2002-09-03  Keith Seitz  <keiths@redhat.com>
+
+       * lib/gdb.exp (gdb_compile_pthreads): Fix "build_bin" typo.
+       Use integer comparison instead of string comparison for testing
+       whether binary was built.
+
 2002-09-03  Jim Blandy  <jimb@redhat.com>
 
        * gdb.threads/killed.exp, gdb.threads/killed.c: New test.
index 8949910..f4ddc63 100644 (file)
@@ -1176,7 +1176,7 @@ proc gdb_compile {source dest type options} {
 # against several different thread libraries, to see which one this
 # system has.
 proc gdb_compile_pthreads {source dest type options} {
-    set build_binfile 0
+    set built_binfile 0
     set why_msg "unrecognized error"
     foreach lib {-lpthreads -lpthread -lthread} {
         # This kind of wipes out whatever libs the caller may have
@@ -1201,7 +1201,7 @@ proc gdb_compile_pthreads {source dest type options} {
             }
         }
     }
-    if {$built_binfile == "0"} {
+    if {!$built_binfile} {
         unsupported "Couldn't compile $source: ${why_msg}"
         return -1
     }