diff options
author | Nathan Hjelm <hjelmn@mac.com> | 2009-02-16 21:39:29 -0300 |
---|---|---|
committer | Daniel Drake <dsd@gentoo.org> | 2009-02-16 21:40:45 -0300 |
commit | b49f6bf5c910d0fd694ecf165d7927673707bff9 (patch) | |
tree | ad2a648eeef9ce04567f5717f3d9831f3ccdb0e9 /autogen.sh | |
parent | d859158581e9a3250f36cdeeb8ea67cda04053bd (diff) | |
download | libusb-b49f6bf5c910d0fd694ecf165d7927673707bff9.tar.gz |
Darwin backend
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ #!/bin/sh -libtoolize --copy --force || exit 1 + +# use glibtoolize if it is available (darwin) +(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize || LIBTOOLIZE=libtoolize + +$LIBTOOLIZE --copy --force || exit 1 aclocal || exit 1 autoheader || exit 1 autoconf || exit 1 |