summaryrefslogtreecommitdiff
path: root/Build-tools/Do-linux-build
diff options
context:
space:
mode:
Diffstat (limited to 'Build-tools/Do-linux-build')
-rwxr-xr-xBuild-tools/Do-linux-build28
1 files changed, 0 insertions, 28 deletions
diff --git a/Build-tools/Do-linux-build b/Build-tools/Do-linux-build
deleted file mode 100755
index 44a9ad05fa2..00000000000
--- a/Build-tools/Do-linux-build
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/sh
-
-set -e -x
-
-# Only use the "--with-other-libc" parameter, if another libc actually
-# exists, since this will also force static linking, which does not work
-# together with OpenSSL
-OTHER_LIBC_DIR=/usr/local/mysql-glibc
-OTHER_LIBC=""
-if [ -d OTHER_LIBC_DIR ] ; then
- OTHER_LIBC="--with-other-libc=$OTHER_LIBC_DIR"
-fi
-
-BUILD/compile-pentium-max $OTHER_LIBC \
- --with-comment="Official MySQL Binary" \
- --prefix=/usr/local/mysql --with-extra-charset=complex \
- --enable-thread-safe-client --enable-local-infile \
- --with-server-suffix=-max
-nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz
-scripts/make_binary_distribution
-make dist
-Build-tools/Do-rpm --local
-BUILD/compile-pentium --with-other-libc=$OTHER_LIBC_DIR \
- --with-comment="Official MySQL Binary" \
- --prefix=/usr/local/mysql --with-extra-charset=complex \
- --enable-thread-safe-client --enable-local-infile
-nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz
-scripts/make_binary_distribution