Show an error message if autoconf isn't found
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401568
This commit is contained in:
parent
6f035998f4
commit
3d9db3824d
2 changed files with 12 additions and 2 deletions
|
@ -5,9 +5,14 @@ echo "This may take a while ..."
|
||||||
|
|
||||||
# Regenerate configuration files
|
# Regenerate configuration files
|
||||||
cp acinclude.m4 aclocal.m4
|
cp acinclude.m4 aclocal.m4
|
||||||
|
found=false
|
||||||
for autoconf in autoconf autoconf259
|
for autoconf in autoconf autoconf259
|
||||||
do if which $autoconf >/dev/null; then $autoconf; break; fi
|
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
|
||||||
done
|
done
|
||||||
|
if test x$found = xfalse; then
|
||||||
|
echo "Couldn't find autoconf, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
(cd test; sh autogen.sh)
|
(cd test; sh autogen.sh)
|
||||||
|
|
||||||
# Run configure for this platform
|
# Run configure for this platform
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
#
|
#
|
||||||
# Regenerate configuration files
|
# Regenerate configuration files
|
||||||
cp acinclude.m4 aclocal.m4
|
cp acinclude.m4 aclocal.m4
|
||||||
|
found=false
|
||||||
for autoconf in autoconf autoconf259
|
for autoconf in autoconf autoconf259
|
||||||
do if which $autoconf >/dev/null; then $autoconf; break; fi
|
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
|
||||||
done
|
done
|
||||||
|
if test x$found = xfalse; then
|
||||||
|
echo "Couldn't find autoconf, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue