diff options
author | Ben Elliston <bje@gnu.org> | 2006-06-02 05:06:24 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2006-06-02 05:06:24 +0000 |
commit | 9190b14c8e194c6353d111cef8aa03fec5708d61 (patch) | |
tree | 32e3ad138e2498b31a9b0264c2455d417b18f050 /config | |
parent | 25d1791f2e3efd751309679eab7a115166527a28 (diff) | |
download | dejagnu-9190b14c8e194c6353d111cef8aa03fec5708d61.zip dejagnu-9190b14c8e194c6353d111cef8aa03fec5708d61.tar.gz dejagnu-9190b14c8e194c6353d111cef8aa03fec5708d61.tar.bz2 |
* config/dos.exp (dos_open): Only run global board_info once at
the beginning of the proc; remove duplicates.
(dos_load): Use file join to separate path components.
(dos_copy_upload): Likewise.
* lib/remote.exp (call_remote): Use error, not "blooie" to trigger
an error.
Diffstat (limited to 'config')
-rw-r--r-- | config/dos.exp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/config/dos.exp b/config/dos.exp index 5c6f69b..7742a3d 100644 --- a/config/dos.exp +++ b/config/dos.exp @@ -24,12 +24,12 @@ # proc dos_open { dest args } { global destbat_num + global board_info if {![info exists destbat_num]} { set destbat_num [pid] } if { [board_info $dest conninfo] == "" } { - global board_info set name [board_info $dest name] set board_info($name,conninfo) "b${destbat_num}.bat" @@ -103,7 +103,6 @@ proc dos_open { dest args } { set talias "foo-bar" } - global board_info if {[board_info $dest exists name]} { set n [board_info $dest name] } else { @@ -371,16 +370,16 @@ proc dos_load { dest prog args } { global target_alias set comp [get_multilibs] - if {[file exists "${comp}/winsup/new-cygwin1.dll"]} { + if {[file exists [file join ${comp} winsup new-cygwin1.dll]]} { set dll "${comp}/winsup/new-cygwin1.dll" set dll_name "cygwin1.dll" - } elseif {[file exists "${comp}/winsup/new-cygwin.dll"]} { + } elseif {[file exists [file join ${comp} winsup new-cygwin.dll]]} { set dll "${comp}/winsup/new-cygwin.dll" set dll_name "cygwin.dll" - } elseif {[file exists ${comp}/lib/cygwin1.dll]} { + } elseif {[file exists [file join ${comp} lib cygwin1.dll]]} { set dll "${comp}/lib/cygwin1.dll" set dll_name "cygwin1.dll" - } elseif {[file exists ${comp}/lib/cygwin.dll]} { + } elseif {[file exists [file join ${comp} lib cygwin.dll]]} { set dll "${comp}/lib/cygwin.dll" set dll_name "cygwin.dll" } else { @@ -461,7 +460,7 @@ proc dos_copy_download { host localfile remotefile } { proc dos_copy_upload { host remotefile localfile } { remote_file build delete $localfile - if {[file exists "[board_info $host local_dir]/$remotefile"]} { + if {[file exists [file join [board_info $host local_dir] $remotefile]]} { set result [remote_download build "[board_info $host local_dir]/$remotefile" $localfile] } else { set result "" |