From: Simon Wilkinson Date: Tue, 22 Dec 2009 21:34:23 +0000 (+0000) Subject: Look for aclocal in more places X-Git-Tag: openafs-devel-1_5_69~87 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=b631f5d64c629f5cda8ca02d859a089dca0a71fe;p=packages%2Fo%2Fopenafs.git 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 Tested-by: Derrick Brashear --- diff --git a/regen.sh b/regen.sh index 8d04e24ce..8ef4349dc 100755 --- a/regen.sh +++ b/regen.sh @@ -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"