Commit cea14f25 authored by joreland@mysql.com's avatar joreland@mysql.com

ndb autotest

  adopt to changes in auto*tools
parent 6132b0a5
...@@ -70,14 +70,19 @@ if [ "$build" ] ...@@ -70,14 +70,19 @@ if [ "$build" ]
then then
cd $dst_place cd $dst_place
rm -rf $run_dir/* rm -rf $run_dir/*
aclocal; autoheader; autoconf; automake if [ -x BUILD/autorun.sh ]
if [ -d storage ]
then then
(cd storage/innobase; aclocal; autoheader; autoconf; automake) ./BUILD/autorun.sh
(cd storage/bdb/dist; sh s_all)
else else
(cd innobase; aclocal; autoheader; autoconf; automake) aclocal; autoheader; autoconf; automake
(cd bdb/dist; sh s_all) if [ -d storage ]
then
(cd storage/innobase; aclocal; autoheader; autoconf; automake)
(cd storage/bdb/dist; sh s_all)
else
(cd innobase; aclocal; autoheader; autoconf; automake)
(cd bdb/dist; sh s_all)
fi
fi fi
eval $configure --prefix=$run_dir eval $configure --prefix=$run_dir
make make
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment