mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
17 lines
312 B
Text
17 lines
312 B
Text
|
#! /bin/sh
|
||
|
|
||
|
for package in . ./innobase
|
||
|
do
|
||
|
(cd $package
|
||
|
rm -rf config.cache autom4te.cache
|
||
|
aclocal
|
||
|
autoheader
|
||
|
libtoolize --force
|
||
|
aclocal
|
||
|
automake --add-missing --force-missing
|
||
|
autoconf)
|
||
|
done
|
||
|
|
||
|
#rm -rf ./bdb/build_unix/config.cache ./bdb/dist/autom4te.cache
|
||
|
#(cd ./bdb/dist && sh s_all)
|