mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 10:20:18 -06:00
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:
parent
498d9d905b
commit
c19e0cf151
15
autogen.sh
15
autogen.sh
@ -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 || {
|
||||
|
Loading…
Reference in New Issue
Block a user