From 87dc12c27ebb6a0f35e0da8b8561e2c421dd4f6a Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Tue, 17 Mar 2009 23:04:14 +0000 Subject: [PATCH] 2009-03-17 Mike Kestner * bootstrap-generic: expose LIBTOOLIZE env variable to support building on mac osx with glibtoolize. [Fixes #480559] svn path=/trunk/gtk-sharp/; revision=129640 --- ChangeLog | 5 +++++ bootstrap-generic | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d1c8805ca..db1c4f149 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-03-17 Mike Kestner + + * bootstrap-generic: expose LIBTOOLIZE env variable to support + building on mac osx with glibtoolize. [Fixes #480559] + 2009-03-17 Christian Hoff * gdk/Property.custom: add new overloads to the Get method diff --git a/bootstrap-generic b/bootstrap-generic index 6df03651e..97f803c20 100755 --- a/bootstrap-generic +++ b/bootstrap-generic @@ -96,10 +96,12 @@ xlc ) esac +LIBTOOLIZE=${LIBTOOLIZE:-libtoolize} + if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then - echo "Running libtoolize..." - libtoolize --force --copy + echo "Running $LIBTOOLIZE..." + $LIBTOOLIZE --force --copy fi fi