diff options
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,10 +13,10 @@ DATE="Apr 2004" which () { IFS=":" # set words separator in PATH to be ':' (it allows spaces in dirnames) for i in $PATH; do - if test -z "$i"; then $i=.; fi + if test -z "$i"; then i=.; fi if [ -f "$i/$1" ] ; then IFS=" " - echo $i/$1 + echo "$i/$1" break fi done |
