2
0
Fork 0

On OS X the GNU libtool is prefixed with a g.

personal/stbuehler/wip
Simon Lundström 2011-05-18 20:26:43 +02:00
parent 259cdb57e3
commit effdfb6e62
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
if which glibtoolize >/dev/null 2>&1; then
LIBTOOLIZE=${LIBTOOLIZE:-glibtoolize}
else
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
fi
LIBTOOLIZE_FLAGS="--copy --force"
ACLOCAL=${ACLOCAL:-aclocal}
AUTOHEADER=${AUTOHEADER:-autoheader}