summaryrefslogtreecommitdiff
path: root/netware/BUILD/compile-AUTOTOOLS
diff options
context:
space:
mode:
authorunknown <joerg@trift2.>2006-10-12 18:25:27 +0200
committerunknown <joerg@trift2.>2006-10-12 18:25:27 +0200
commitd41b34bf95e1a1d4c160adef9376c6f84af08acd (patch)
tree29e7348c02520d8c659a9b9b3abff4e30a00fce7 /netware/BUILD/compile-AUTOTOOLS
parent1f0c83c187c362a559c81393742aa96d3f19a3d3 (diff)
downloadmariadb-git-d41b34bf95e1a1d4c160adef9376c6f84af08acd.tar.gz
Various tool fixes, necessary to build 5.1.12-beta on Netware.
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.
Diffstat (limited to 'netware/BUILD/compile-AUTOTOOLS')
-rwxr-xr-xnetware/BUILD/compile-AUTOTOOLS6
1 files changed, 5 insertions, 1 deletions
diff --git a/netware/BUILD/compile-AUTOTOOLS b/netware/BUILD/compile-AUTOTOOLS
index 20e506aa683..c93fb1b1b28 100755
--- a/netware/BUILD/compile-AUTOTOOLS
+++ b/netware/BUILD/compile-AUTOTOOLS
@@ -5,8 +5,11 @@
# 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 . ./storage/innobase
+for package in .
do
(cd $package
rm -rf config.cache autom4te.cache
@@ -14,6 +17,7 @@ do
autoheader
libtoolize --force
aclocal
+# automake --verbose --add-missing --force-missing
automake --add-missing --force-missing
autoconf)
done