Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2003-11-08 00:05:40 +0300
committerZoltan Varga <vargaz@gmail.com>2003-11-08 00:05:40 +0300
commitdf95853df79bea8e0031db591e042bf883a1f567 (patch)
tree042ad07a2e9a3438da5177821d65372079197283 /autogen.sh
parent39489b283924f6070abf7222ccc4c53a4dac084f (diff)
2003-11-07 Zoltan Varga <vargaz@freemail.hu>
* autogen.sh: Fix previous patch and silence noisy GNU which. svn path=/trunk/mono/; revision=19717
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index e9127cc2a49..ce0c26c87ac 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -31,8 +31,8 @@ fi
}
if [ -z "$LIBTOOL" ]; then
- LIBTOOL=`which glibtool`
- if [ ! -x $LIBTOOL ]; then
+ LIBTOOL=`which glibtool 2>/dev/null`
+ if [ ! -x "$LIBTOOL" ]; then
LIBTOOL=`which libtool`
fi
fi