2003-03-03 23:04:36 -05:00
|
|
|
#! /bin/sh
|
|
|
|
|
2003-04-24 18:15:52 -04:00
|
|
|
# debug
|
|
|
|
#set -x
|
|
|
|
|
|
|
|
# stop on errors
|
|
|
|
set -e
|
2006-10-12 18:25:27 +02:00
|
|
|
sed -e "s/^DIST_COMMON/#DIST_COMMON/g" storage/ndb/Makefile.am > storage/ndb/Makefile.am.$$
|
|
|
|
mv storage/ndb/Makefile.am.$$ storage/ndb/Makefile.am
|
2003-04-24 18:15:52 -04:00
|
|
|
|
2006-10-12 18:25:27 +02:00
|
|
|
# for package in . ./storage/innobase
|
|
|
|
for package in .
|
2003-03-03 23:04:36 -05:00
|
|
|
do
|
|
|
|
(cd $package
|
|
|
|
rm -rf config.cache autom4te.cache
|
|
|
|
aclocal
|
|
|
|
autoheader
|
|
|
|
libtoolize --force
|
|
|
|
aclocal
|
2006-10-12 18:25:27 +02:00
|
|
|
# automake --verbose --add-missing --force-missing
|
2003-03-03 23:04:36 -05:00
|
|
|
automake --add-missing --force-missing
|
|
|
|
autoconf)
|
|
|
|
done
|
|
|
|
|
|
|
|
#rm -rf ./bdb/build_unix/config.cache ./bdb/dist/autom4te.cache
|
|
|
|
#(cd ./bdb/dist && sh s_all)
|