From 9c09209fed44e15678524b7ed74b60d2ae8e2d2a Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Tue, 11 Nov 2003 18:51:43 +0000 Subject: [PATCH] Use glibtoolize on Mac OSX git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5293 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/autogen.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/SWIG/autogen.sh b/SWIG/autogen.sh index 0c62f3a0b..11db63e07 100755 --- a/SWIG/autogen.sh +++ b/SWIG/autogen.sh @@ -10,6 +10,14 @@ set -x test -d Tools/config || mkdir Tools/config aclocal -I Tools/config autoheader -libtoolize --force --copy + +# Note: on Mac OS X there is a different program 'libtoolize' that is definitely not +# what we want to run. Instead, we want to use 'glibtoolize' + +if test -x /usr/bin/glibtoolize; then + glibtoolize --force --copy +else + libtoolize --force --copy +fi automake --add-missing --copy --force-missing autoconf