Commit ec5bda5d authored by unknown's avatar unknown

mysql-test-run.sh don't depend on 'tr'


mysql-test/mysql-test-run.sh:
  use IFS=: instead of tr : " "
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent 97805300
heikki@donna.mysql.fi tim@threads.polyesthetic.msg
monty@donna.mysql.fi
sasha@mysql.sashanet.com
...@@ -24,10 +24,10 @@ PATH=/bin:/usr/bin:/usr/local/bin:/usr/bsd:/usr/X11R6/bin ...@@ -24,10 +24,10 @@ PATH=/bin:/usr/bin:/usr/local/bin:/usr/bsd:/usr/X11R6/bin
which () which ()
{ {
DIRS=`echo $PATH | tr ":" " "` IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
for file for file
do do
for dir in $DIRS for dir in $PATH
do do
if test -f $dir/$file if test -f $dir/$file
then then
...@@ -38,6 +38,7 @@ which () ...@@ -38,6 +38,7 @@ which ()
echo "which: no $file in ($PATH)" echo "which: no $file in ($PATH)"
exit 1 exit 1
done done
IFS="$save_ifs"
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment