mariadb/netware/BUILD/compile-AUTOTOOLS

27 lines
578 B
Text
Raw Normal View History

2003-03-03 23:04:36 -05:00
#! /bin/sh
# debug
#set -x
# stop on errors
set -e
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
# 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
# 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)