diff options
author | serg@sergbook.mysql.com <> | 2006-05-08 18:02:05 -0400 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2006-05-08 18:02:05 -0400 |
commit | 1f24bffe1192cfd7723bb63a9b50f3b6be027f69 (patch) | |
tree | 1ac8e7dbd25f7d8ffd0cc0abc2bf7272ff41203a /BUILD | |
parent | 7b2ed1143a2d864b048f4847afb01ff0d5eb5ffb (diff) | |
download | mariadb-git-1f24bffe1192cfd7723bb63a9b50f3b6be027f69.tar.gz |
innodb also need libtoolize
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/autorun.sh | 4 | ||||
-rwxr-xr-x | BUILD/compile-dist | 4 |
2 files changed, 6 insertions, 2 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" diff --git a/BUILD/compile-dist b/BUILD/compile-dist index c0f5098ba6e..7cbf794530d 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -8,7 +8,9 @@ # make distclean (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 autoheader libtoolize --automake --force --copy |