2009-03-17 Mike Kestner <mkestner@novell.com>

* bootstrap-generic: expose LIBTOOLIZE env variable to support
	building on mac osx with glibtoolize.  [Fixes #480559]

svn path=/trunk/gtk-sharp/; revision=129640
This commit is contained in:
Mike Kestner 2009-03-17 23:04:14 +00:00
parent d7095d495c
commit 87dc12c27e
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-03-17 Mike Kestner <mkestner@novell.com>
* bootstrap-generic: expose LIBTOOLIZE env variable to support
building on mac osx with glibtoolize. [Fixes #480559]
2009-03-17 Christian Hoff <christian_hoff@gmx.net>
* gdk/Property.custom: add new overloads to the Get method

View file

@ -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