Commit af816a16 authored by tim@threads.polyesthetic.msg's avatar tim@threads.polyesthetic.msg
Browse files

Merge

parents 2ba11380 eb320ce7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
paul@central.snake.net
monty@donna.mysql.fi
heikki@donna.mysql.fi
monty@donna.mysql.fi
paul@central.snake.net
tim@threads.polyesthetic.msg
+3 −2
Original line number Diff line number Diff line
@@ -24,10 +24,10 @@ PATH=/bin:/usr/bin:/usr/local/bin:/usr/bsd:/usr/X11R6/bin

which ()
{
  DIRS=`echo $PATH | tr ":" " "`
  IFS="${IFS=   }"; save_ifs="$IFS"; IFS=':'
  for file
  do
    for dir in $DIRS
    for dir in $PATH
    do
      if test -f $dir/$file
      then
@@ -38,6 +38,7 @@ which ()
    echo "which: no $file in ($PATH)"
    exit 1
  done
  IFS="$save_ifs"
}