MacOSX installed libtoolize as glibtoolize. Handle that in autogen

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15255 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-12-25 18:38:10 +00:00
parent 498d9d905b
commit c19e0cf151

View File

@ -135,12 +135,17 @@ ACLOCAL="$program"
DIE=1
}
# On MacOS, libtoolize is installed as glibtoolize, so handle that here.
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`libtoolize' installed to compile GnuCash."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
LIBTOOLIZE=glibtoolize
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`libtoolize' installed to compile GnuCash."
echo "Could not find either \`libtoolize' or \'glibtoolize'."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}
}
(${AUTOMAKE} --version) < /dev/null > /dev/null 2>&1 || {