mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -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
|
DIE=1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# On MacOS, libtoolize is installed as glibtoolize, so handle that here.
|
||||||
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||||
echo
|
LIBTOOLIZE=glibtoolize
|
||||||
echo "**Error**: You must have \`libtoolize' installed to compile GnuCash."
|
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||||
echo "Download the appropriate package for your distribution,"
|
echo
|
||||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
echo "**Error**: You must have \`libtoolize' installed to compile GnuCash."
|
||||||
DIE=1
|
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 || {
|
(${AUTOMAKE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||||
|
Loading…
Reference in New Issue
Block a user