OSDN Git Service

* lib/target-supports.exp (check_iconv_available): Fix fallout
authorgrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 May 2004 17:51:46 +0000 (17:51 +0000)
committergrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 May 2004 17:51:46 +0000 (17:51 +0000)
from 2004-05-28 patch.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82460 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 6d0c44b..6d5e0a5 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-30  Graham Stott  <graham.stott@btinternet.com>
+
+       * lib/target-supports.exp (check_iconv_available): Fix fallout
+       from 2004-05-28 patch.
+
 2004-05-30  Paul Brook  <paul@codesourcery.com>
 
        PR fortran/15620
index aee7016..e23a8ec 100644 (file)
@@ -239,13 +239,13 @@ proc check_iconv_available { test_what } {
 
     set lines [${tool}_target_compile $src $exe executable "libs=$libiconv" ]
     file delete $src
-    remote_file build delete $exe
 
     if [string match "" $lines] then {
        # No error messages, everything is OK.
 
-       set result [${tool}_load "./tmp.x" "" ""]
+       set result [${tool}_load "./$exe" "" ""]
        set status [lindex $result 0];
+       remote_file build delete $exe
 
        verbose "check_iconv_available status is <$status>" 2