aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-05-27 11:27:19 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-05-27 11:27:19 +0000
commit33d26d138cfe916980f1d6c13fe72d2cbc3848cc (patch)
treec14a275f12bb30f3ab37b0b0a47492673ed144d5 /configure
parentc215bcf9d2f92201270757d77d9a17847c109787 (diff)
Bricoles (cf bug #782)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5769 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index b1c59e220..e3bd37bc2 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