-rwxr-xr-x | autogen.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.bash b/autogen.bash index 691173c..8daa5c2 100755 --- a/autogen.bash +++ b/autogen.bash @@ -1,13 +1,13 @@ -#!/bin/sh +#!/bin/bash tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)" if test -z "$tool_libtoolize" ; then echo "Failed to find libtoolize." ; exit 1; fi (test -d aux.d || mkdir aux.d) \ && (test -d aclocal.d || mkdir aclocal.d) \ && "$tool_libtoolize" -f \ && aclocal -I aclocal.d \ && autoheader \ && automake -a \ && (autoconf || autoconf) \ && ./configure "$@" |