diff options
Diffstat (limited to 'BUILD/autorun.sh')
-rwxr-xr-x | BUILD/autorun.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/BUILD/autorun.sh b/BUILD/autorun.sh index 37cfc7234bf..6370de01ae1 100755 --- a/BUILD/autorun.sh +++ b/BUILD/autorun.sh @@ -4,7 +4,9 @@ die() { echo "$@"; exit 1; } (cd storage/bdb/dist && sh s_all) -(cd storage/innobase && aclocal && autoheader && aclocal && automake && autoconf) +(cd storage/innobase && aclocal && autoheader && \ + libtoolize --automake --force --copy && \ + && automake --force --add-missing --copy && autoconf) aclocal || die "Can't execute aclocal" autoheader || die "Can't execute autoheader" |