diff options
author | monty@hundin.mysql.fi <> | 2002-03-06 23:41:18 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-03-06 23:41:18 +0200 |
commit | e9ba8d58feb15dba676e5603f9c4134f1d411c79 (patch) | |
tree | 8004cb532c51b6a2c9f603271702236358f167cb /mysql-test/mysql-test-run.sh | |
parent | c00ddbab5477d623ce00046e43fc0573052219e1 (diff) | |
parent | 35462001696d14b8f71bc4589fad3de63680eeed (diff) | |
download | mariadb-git-e9ba8d58feb15dba676e5603f9c4134f1d411c79.tar.gz |
merge
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-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 a017cf5a97e..efebc5b5c86 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -79,8 +79,10 @@ sleep_until_file_created () # 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 HEAD=head @@ -88,13 +90,12 @@ 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? |