r15266 - gnucash/branches/reshuffle-modules - MacOSX installed libtoolize as glibtoolize. Handle that in autogen.sh.

Andreas Köhler andi5 at cvs.gnucash.org
Wed Dec 27 12:08:30 EST 2006


Author: andi5
Date: 2006-12-27 12:08:29 -0500 (Wed, 27 Dec 2006)
New Revision: 15266
Trac: http://svn.gnucash.org/trac/changeset/15266

Modified:
   gnucash/branches/reshuffle-modules/
   gnucash/branches/reshuffle-modules/autogen.sh
Log:
MacOSX installed libtoolize as glibtoolize. Handle that in autogen.sh.
merged from trunk, r15255.



Property changes on: gnucash/branches/reshuffle-modules
___________________________________________________________________
Name: svk:merge
   - 3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/branches/reshuffle-modules:1046
3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/branches/swig-redo:802
3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/trunk:990
d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk:13714
d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk2:13366
   + 3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/branches/reshuffle-modules:1050
3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/branches/swig-redo:802
3889ce50-311e-0410-a464-f059747ec5d1:/local/gnucash/trunk:990
d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk:13714
d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk2:13366

Modified: gnucash/branches/reshuffle-modules/autogen.sh
===================================================================
--- gnucash/branches/reshuffle-modules/autogen.sh	2006-12-27 16:57:27 UTC (rev 15265)
+++ gnucash/branches/reshuffle-modules/autogen.sh	2006-12-27 17:08:29 UTC (rev 15266)
@@ -135,12 +135,17 @@
   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 || {



More information about the gnucash-changes mailing list