diff options
author | unknown <monty@tik.mysql.fi> | 2002-03-05 15:49:34 +0200 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2002-03-05 15:49:34 +0200 |
commit | bceab09f00a9c8e03e53eb1a023e9797eaf1ef60 (patch) | |
tree | 2fea2755a23e3acf50bf998737b966de98b56aee /mysql-test | |
parent | 1dd4cf0295fcc176ff4ea314afb4ceb8910792ce (diff) | |
parent | 326d80ea649ed1dd0d13640b6e95f5c1df1ae458 (diff) | |
download | mariadb-git-bceab09f00a9c8e03e53eb1a023e9797eaf1ef60.tar.gz |
Merge hundin:/my/mysql-3.23 into tik.mysql.fi:/home/my/mysql-3.23
configure.in:
Auto merged
mysql-test/mysql-test-run.sh:
Auto merged
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index d06f17d14e3..4898d9c5464 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -44,21 +44,22 @@ which () # No paths below as we can't be sure where the program is! -BASENAME=`which basename | head -1` -DIFF=`which diff | head -1` +SED=sed + +BASENAME=`which basename | $SED q` +DIFF=`which diff | $SED q` CAT=cat CUT=cut TAIL=tail ECHO=echo # use internal echo if possible EXPR=expr # use internal if possible FIND=find -GCOV=`which gcov | head -1` +GCOV=`which gcov | $SED q` PRINTF=printf RM=rm TIME=time TR=tr -XARGS=`which xargs | head -1` -SED=sed +XARGS=`which xargs | $SED q` # Are we using a source or a binary distribution? |