mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
12 lines
387 B
Bash
12 lines
387 B
Bash
cflags="$c_warnings $extra_flags"
|
|
cxxflags="$cxx_warnings $base_cxxflags $extra_flags"
|
|
configure="./configure $base_configs $extra_configs"
|
|
for arg in "$@"; do
|
|
configure="$configure "`echo "$arg" | sed -e 's,\([^a-zA-Z0-9_.-]\),\\\\\1,g'`
|
|
done
|
|
|
|
|
|
CFLAGS="$cflags" CXX=gcc CXXFLAGS="$cxxflags" eval "$configure"
|
|
|
|
test "$make" = no || $make $AM_MAKEFLAGS
|
|
test -z "$strip" || strip mysqld
|