mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 14:32:34 +01:00
d41b34bf95
netware/BUILD/compile-AUTOTOOLS: Fixes for Netware builds: 1) The "autotools" used there have problems with changing variables in Makefiles after the initial setting. 2) "storage/innobase" does not need an autotool run any more. 3) "automake --verbose" may be able to help if new problems arise. netware/BUILD/compile-netware-START: The CSV engine is now mandatory in 5.1, must not be de-configured. netware/BUILD/mwenv: When testing for a possibly empty shell variable, it is mandatory to use quotes! netware/BUILD/nwbootstrap: The "mwenv" file has been changed, reflect these changes here: 1) It is no longer necessary to set the variables WINE_BUILD_DIR, BUILD_DIR, and VERSION. 2) The handling of MYDEV there has changed, the "export" line may be indented.
26 lines
578 B
Bash
Executable file
26 lines
578 B
Bash
Executable file
#! /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 .
|
|
do
|
|
(cd $package
|
|
rm -rf config.cache autom4te.cache
|
|
aclocal
|
|
autoheader
|
|
libtoolize --force
|
|
aclocal
|
|
# automake --verbose --add-missing --force-missing
|
|
automake --add-missing --force-missing
|
|
autoconf)
|
|
done
|
|
|
|
#rm -rf ./bdb/build_unix/config.cache ./bdb/dist/autom4te.cache
|
|
#(cd ./bdb/dist && sh s_all)
|