aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index b1c59e220c..e3bd37bc2d 100755
--- a/configure
+++ b/configure
@@ -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