Skip to content

Commit

Permalink
build: on OSX, use glibtoolize by default
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Mar 2, 2014
1 parent 0298788 commit 971d12c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion autogen.sh
Expand Up @@ -8,7 +8,14 @@ set -e
git submodule update
}

LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
case "$(uname)" in
Darwin)
LIBTOOLIZE=${LIBTOOLIZE:-glibtoolize}
;;
*)
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
;;
esac
AUTORECONF=${AUTORECONF:-autoreconf}
ACLOCAL=${ACLOCAL:-aclocal}
AUTOCONF=${AUTOCONF:-autoconf}
Expand Down

0 comments on commit 971d12c

Please sign in to comment.