diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-04-04 12:44:06 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-04-04 12:44:06 -0600 |
commit | 92fcee847f4c0a992e24af3873012f9bb07f8d45 (patch) | |
tree | 5e7e68cafd6ec06656b3dc7942a7cb4df8c84902 | |
parent | f204ff40e60c98a1177e96498e7f48efda3adf71 (diff) | |
download | mariadb-git-92fcee847f4c0a992e24af3873012f9bb07f8d45.tar.gz |
separate compile-pentium and compile-pentium-max
BUILD/compile-pentium:
do not build innobase and bdb, build it in max instead
-rwxr-xr-x | BUILD/compile-pentium | 2 | ||||
-rw-r--r-- | BUILD/compile-pentium-max | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/BUILD/compile-pentium b/BUILD/compile-pentium index aa013c85d30..11559be93de 100755 --- a/BUILD/compile-pentium +++ b/BUILD/compile-pentium @@ -7,6 +7,6 @@ extra_flags="$pentium_cflags $fast_cflags" extra_configs="$pentium_configs" strip=yes -extra_configs="$extra_configs --with-berkeley-db --with-innobase" +extra_configs="$extra_configs" . "$path/FINISH.sh" diff --git a/BUILD/compile-pentium-max b/BUILD/compile-pentium-max new file mode 100644 index 00000000000..2f63ebe13c0 --- /dev/null +++ b/BUILD/compile-pentium-max @@ -0,0 +1,12 @@ +#! /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-innobase --with-berkeley-db" + +. "$path/FINISH.sh" |