summaryrefslogtreecommitdiff
path: root/netware/BUILD/compile-AUTOTOOLS
diff options
context:
space:
mode:
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 57213b1b3d0..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 . ./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