Look for aclocal in more places

Some operating systems (cough, OpenSolaris, cough) have multiple
versions of aclocal installed, and don't populate the 'aclocal' name.
If 'aclocal' isn't present, then try using 'aclocal-1.10' before we give
up in disgust.

Change-Id: Iad6daf1038942aeee13f38cb0c00c58da621cfd1
Reviewed-on: http://gerrit.openafs.org/1019
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Simon Wilkinson 2009-12-22 21:34:23 +00:00 committed by Derrick Brashear
parent 2ec18e9f7a
commit b631f5d64c

View File

@ -16,7 +16,15 @@ done
echo "Updating configuration..."
echo "Running aclocal"
aclocal -I src/cf
if which aclocal > /dev/null 2>&1; then
aclocal -I src/cf
elif which aclocal-1.10 > /dev/null 2>&1; then
aclocal-1.10 -I src/cf
else
echo "No aclocal found on your system (looked for aclocal & aclocal-1.10)"
exit 1
fi
echo "Running autoconf"
autoconf
echo "Running autoconf for configure-libafs"