mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
22 lines
354 B
Bash
Executable file
22 lines
354 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# debug
|
|
#set -x
|
|
|
|
# stop on errors
|
|
set -e
|
|
|
|
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)
|