summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-02-10 01:21:09 +0200
committerunknown <monty@mashka.mysql.fi>2003-02-10 01:21:09 +0200
commitc89666266228fbfc9582a6b28b8dc93acb4acebe (patch)
tree890a223355a4c56b7ccfcb5d611be45b944db58e /BUILD
parent4cf749e6c43a4a0228e54deb52336742b18e9b7f (diff)
downloadmariadb-git-c89666266228fbfc9582a6b28b8dc93acb4acebe.tar.gz
Fixed memory reference error when doing key_column <=> NULL on column that is defined as NOT NULL
BUILD/FINISH.sh: Abort if one of configuration script fails
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD/FINISH.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh
index 82f31a14dc4..5358667b881 100644
--- a/BUILD/FINISH.sh
+++ b/BUILD/FINISH.sh
@@ -13,7 +13,11 @@ commands="\
$make -k clean || true
/bin/rm -f */.deps/*.P config.cache innobase/config.cache bdb/build_unix/config.cache
-aclocal && autoheader && aclocal && automake && autoconf
+if [ ! aclocal ] ; then echo \"Can't execute aclocal\" ; exit 1; fi
+if [ ! autoheader ] ; then echo \"Can't execute autoheader\" ; exit 1; fi
+if [ ! aclocal ] ; then echo \"Can't execute aclocal\" ; exit 1; fi
+if [ ! automake ] ; then echo \"Can't execute automake\" ; exit 1; fi
+if [ ! autoconf ] ; then echo \"Can't execute autoconf\" ; exit 1; fi
(cd bdb/dist && sh s_all)
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
if [ -d gemini ]