author | Michael Krelin <hacker@klever.net> | 2009-04-25 20:38:04 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-04-25 20:38:04 (UTC) |
commit | 6dab4b79d66fa5ad5827b53d930f6508380b4f4a (patch) (unidiff) | |
tree | 8cd0617a409f66c765c1cbac65804ef9786447bd | |
parent | 40bc4d390e016cbb64ea25be177daa92c94a8285 (diff) | |
download | libopkele-6dab4b79d66fa5ad5827b53d930f6508380b4f4a.zip libopkele-6dab4b79d66fa5ad5827b53d930f6508380b4f4a.tar.gz libopkele-6dab4b79d66fa5ad5827b53d930f6508380b4f4a.tar.bz2 |
autogen: mkdir aclocal.d for older libtoolize
Signed-off-by: Michael Krelin <hacker@klever.net>
-rwxr-xr-x | autogen.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,7 +3,8 @@ 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 \ |