diff options
author | Ben Elliston <bje@gnu.org> | 2004-02-07 14:00:12 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2004-02-07 14:00:12 +0000 |
commit | 7eccecb752d585c606b1cf64878c21b18c85d904 (patch) | |
tree | 022d673441ba3eed2733bcb7ce7797e3ad4dcd47 | |
parent | 8452d117a42ecc3b8ded593b3549503861366699 (diff) | |
download | dejagnu-7eccecb752d585c606b1cf64878c21b18c85d904.zip dejagnu-7eccecb752d585c606b1cf64878c21b18c85d904.tar.gz dejagnu-7eccecb752d585c606b1cf64878c21b18c85d904.tar.bz2 |
* lib/standard.exp: Tidy.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/standard.exp | 9 |
2 files changed, 8 insertions, 5 deletions
@@ -1,3 +1,7 @@ +2004-02-08 Ben Elliston <bje@wasabisystems.com> + + * lib/standard.exp: Tidy. + 2004-02-07 Ben Elliston <bje@wasabisystems.com> * Makefile.am (pkgdata_SCRIPTS): Remove lib/mondfe, lib/xsh.exp. diff --git a/lib/standard.exp b/lib/standard.exp index 6396aa6..c5c6f77 100644 --- a/lib/standard.exp +++ b/lib/standard.exp @@ -1,5 +1,5 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -# 2001, 2002, 2003 Free Software Foundation, Inc. +# 2001, 2002, 2003, 2004 Free Software Foundation, Inc. # # This file is part of DejaGnu. # @@ -17,10 +17,8 @@ # along with DejaGnu; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# A set of standard functions for tools. Calls the -# target-machine-specific versions. -# +# A set of standard functions for tools. Calls the target-specific +# versions. proc ${tool}_load { program args } { if { [llength $args] > 0 } { @@ -34,6 +32,7 @@ proc ${tool}_load { program args } { } else { set input_file "" } + return [remote_load target $program $program_args $input_file] } |