summaryrefslogtreecommitdiff
path: root/Build-tools/Do-linux-build
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2002-02-16 11:32:06 -0700
committerunknown <sasha@mysql.sashanet.com>2002-02-16 11:32:06 -0700
commit4e806126da2b0da495ba45899a15b0289384bdc3 (patch)
tree11aa4f519717228eb4e5fcb3392004bb25fa677b /Build-tools/Do-linux-build
parent9f7fe921c417a1888bac6d6a0c3ba69125afb845 (diff)
downloadmariadb-git-4e806126da2b0da495ba45899a15b0289384bdc3.tar.gz
updated build scripts for new Linux build
Build-tools/Do-all-build-steps: pass parameters to Do-rpm Build-tools/Do-compile: with-other-libc option Build-tools/Do-rpm: make it "automagically" work on SuSE as well as RedHat strings/Makefile.am: added t_ctype.h to the distribution for now - permanent fix to come later support-files/mysql.spec.sh: changed build to use --with-other-libc
Diffstat (limited to 'Build-tools/Do-linux-build')
-rwxr-xr-xBuild-tools/Do-linux-build18
1 files changed, 18 insertions, 0 deletions
diff --git a/Build-tools/Do-linux-build b/Build-tools/Do-linux-build
new file mode 100755
index 00000000000..e5b0a49fe75
--- /dev/null
+++ b/Build-tools/Do-linux-build
@@ -0,0 +1,18 @@
+#! /bin/sh
+
+set -e -x
+OTHER_LIBC_DIR=/usr/local/mysql-glibc
+
+BUILD/compile-pentium-max --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 \
+ --with-server-suffix=-max
+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
+scripts/make_binary_distribution