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:
parent
d7095d495c
commit
87dc12c27e
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue