diff options
author | tim@threads.polyesthetic.msg <> | 2001-03-07 16:34:42 -0500 |
---|---|---|
committer | tim@threads.polyesthetic.msg <> | 2001-03-07 16:34:42 -0500 |
commit | 496542f2914477de6d71439bab5f2dedd0e38309 (patch) | |
tree | 553dd04d6fbda617f3a48f0ecefef351047835bd /Build-tools/Do-all-build-steps | |
parent | 853a2f01604b17b4611778d89bf178ccee3901c3 (diff) | |
download | mariadb-git-496542f2914477de6d71439bab5f2dedd0e38309.tar.gz |
Changes so that 'make distcheck' works with Berkeley DB.
Diffstat (limited to 'Build-tools/Do-all-build-steps')
-rwxr-xr-x | Build-tools/Do-all-build-steps | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/Build-tools/Do-all-build-steps b/Build-tools/Do-all-build-steps index 2938edf2b01..d42db28fe2c 100755 --- a/Build-tools/Do-all-build-steps +++ b/Build-tools/Do-all-build-steps @@ -49,20 +49,12 @@ rm -f NEW-RPMS/* # Stop on error set -e -# Make everything readable for user and group -# chmod -R u+rw,g+rw . - /bin/rm -f */.deps/*.P /bin/rm -f config.cache -aclocal; autoheader; aclocal; automake; autoconf -cd innobase -aclocal; autoheader; aclocal; automake; autoconf -cd .. - -# Since we have moved the configure.in stuff from readline to the -# toplevel why do this? David 990630 -# (cd readline; aclocal; autoheader; aclocal; automake; autoconf) +aclocal && autoheader && aclocal && automake && autoconf +(cd innobase && aclocal && autoheader && aclocal && automake && autoconf) +(cd bdb/dist && sh s_all) # A normal user starts here. We must use mit-threads. Otherwise it # does not end up in the distribution. @@ -71,7 +63,7 @@ cd .. --with-low-memory \ --with-mit-threads=yes $EXTRA_CONFIG \ --enable-thread-safe-client \ - --without-berkeley-db \ + --with-berkeley-db \ --with-innobase-db gmake -j 2 @@ -89,6 +81,7 @@ set -e log=$WD/Logs/Log-distcheck-`date +%y%m%d-%H%M` echo "Logging script $TMP_SCRIPT into $log" + if test $to_host = "mysql-work" then # Try to get the right user for MySQL builds on work so that all |