mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
4e806126da
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
18 lines
624 B
Bash
Executable file
18 lines
624 B
Bash
Executable file
#! /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
|