Unidiff1 files changed, 2 insertions, 1 deletions
|
|
|
@@ -2,9 +2,10 @@ |
2 | tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)" |
2 | tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)" |
3 | if test -z "$tool_libtoolize" ; then |
3 | if test -z "$tool_libtoolize" ; then |
4 | echo "Failed to find libtoolize." ; exit 1; |
4 | echo "Failed to find libtoolize." ; exit 1; |
5 | fi |
5 | fi |
6 | test -d aux.d || mkdir aux.d \ |
6 | (test -d aux.d || mkdir aux.d) \ |
| |
7 | && (test -d aclocal.d || mkdir aclocal.d) \ |
7 | && "$tool_libtoolize" -f \ |
8 | && "$tool_libtoolize" -f \ |
8 | && aclocal -I aclocal.d \ |
9 | && aclocal -I aclocal.d \ |
9 | && autoheader \ |
10 | && autoheader \ |
10 | && automake -a \ |
11 | && automake -a \ |
|