From b631f5d64c629f5cda8ca02d859a089dca0a71fe Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Tue, 22 Dec 2009 21:34:23 +0000 Subject: [PATCH] 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 --- regen.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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" -- 2.39.5