diff options
author | Sergei Golubchik <serg@mariadb.org> | 2022-03-21 11:01:40 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2022-03-21 11:01:40 +0100 |
commit | f54d6380d2662d7bc7f173bf96f5dc3d7cf3aec1 (patch) | |
tree | 4a4d68d3fe5cd9602693635afbf2a4fbb28758c2 /BUILD | |
parent | 421153848f0002c9e9b5e204d4c6e85dfcfb5600 (diff) | |
download | mariadb-git-f54d6380d2662d7bc7f173bf96f5dc3d7cf3aec1.tar.gz |
MDEV-27980 file-key-management plugin disabled in mysql_install_db breaks automated deployments (and container initialization)
fix a 2015 typo in build scripts.
--without-plugin=plugin_file_key_management translates to
-DPLUGIN_PLUGIN_FILE_KEY_MANAGEMENT=NO
replace it with a line from 10.4 that builds the plugin
dynamically.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 8a7238c359f..77504522f11 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -211,7 +211,7 @@ fi max_no_embedded_configs="$SSL_LIBRARY --with-plugins=max" max_no_qc_configs="$SSL_LIBRARY --with-plugins=max --without-query-cache" -max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-libevent --without-plugin=plugin_file_key_management --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC" +max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-libevent --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC --with-plugin-file_key_management=DYNAMIC" all_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-innodb_plugin --with-libevent" # |