mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
de1b5a8c69
fixed Do-rpm to accept command-line options for easier testing/local RPM build
13 lines
253 B
Bash
Executable file
13 lines
253 B
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
extra_flags="$pentium_cflags $fast_cflags"
|
|
extra_configs="$pentium_configs"
|
|
strip=yes
|
|
|
|
extra_configs="$extra_configs --with-innodb --with-berkeley-db \
|
|
--enable-thread-safe-client"
|
|
|
|
. "$path/FINISH.sh"
|