summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-02-10 01:21:39 +0200
committermonty@mashka.mysql.fi <>2003-02-10 01:21:39 +0200
commitaee7346ec11b6ec83747de21490d6f7ecf1ca6be (patch)
tree71de5b6d804048a8a975f72fb2ad21e263bc81d4 /BUILD
parentc4e7cbe15835a5c3831115759b1e1fecd3f3de72 (diff)
parentc0b655aa387a2d61a3c6507a9f9bca1f7febab03 (diff)
downloadmariadb-git-aee7346ec11b6ec83747de21490d6f7ecf1ca6be.tar.gz
Merge mashka.mysql.fi:/home/my/mysql-4.0
into mashka.mysql.fi:/home/my/mysql-4.1
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 ]