summaryrefslogtreecommitdiff
path: root/BUILD/autorun.sh
diff options
context:
space:
mode:
authorunknown <serg@sergbook.mysql.com>2006-05-08 16:50:29 -0400
committerunknown <serg@sergbook.mysql.com>2006-05-08 16:50:29 -0400
commitf5babf1f46b7e9b617b660949af416f082cc0705 (patch)
tree583d9687210407fb65daf38a34b2926bbc7f8d04 /BUILD/autorun.sh
parent335cf16a525798179969d3ca7886ba6e7b7473a6 (diff)
downloadmariadb-git-f5babf1f46b7e9b617b660949af416f082cc0705.tar.gz
autorun.sh:
autotool-ize plugins before the main source tree BUILD/autorun.sh: autotool-ize plugins before the main source tree
Diffstat (limited to 'BUILD/autorun.sh')
-rwxr-xr-xBUILD/autorun.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/BUILD/autorun.sh b/BUILD/autorun.sh
index 63bab3565c6..37cfc7234bf 100755
--- a/BUILD/autorun.sh
+++ b/BUILD/autorun.sh
@@ -3,6 +3,9 @@
die() { echo "$@"; exit 1; }
+(cd storage/bdb/dist && sh s_all)
+(cd storage/innobase && aclocal && autoheader && aclocal && automake && autoconf)
+
aclocal || die "Can't execute aclocal"
autoheader || die "Can't execute autoheader"
# --force means overwrite ltmain.sh script if it already exists
@@ -17,5 +20,3 @@ fi
# and --force to overwrite them if they already exist
automake --add-missing --force || die "Can't execute automake"
autoconf || die "Can't execute autoconf"
-(cd storage/bdb/dist && sh s_all)
-(cd storage/innobase && aclocal && autoheader && aclocal && automake && autoconf)