diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2017-10-28 13:10:15 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2017-10-28 13:10:29 -0700 |
commit | e0eade9bb1cfde193b523ce0736009e0edb10f58 (patch) | |
tree | 1ccf8785be7802bbeebb5d21a9bf86725a65d7ca /eclass/mysql-v2.eclass | |
parent | app-eselect/eselect-postgresql: stable 2.2 for sparc, bug #627476 (thanks to ... (diff) | |
download | gentoo-e0eade9bb1cfde193b523ce0736009e0edb10f58.tar.gz gentoo-e0eade9bb1cfde193b523ce0736009e0edb10f58.tar.bz2 gentoo-e0eade9bb1cfde193b523ce0736009e0edb10f58.zip |
eclass/mysql*: skip galera replication during pkg_config.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'eclass/mysql-v2.eclass')
-rw-r--r-- | eclass/mysql-v2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index fe379980a800..94a36dc43547 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -795,7 +795,7 @@ mysql-v2_pkg_config() { ${EROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null for opt in grant-tables host-cache name-resolve networking slave-start \ federated ssl log-bin relay-log slow-query-log external-locking \ - ndbcluster log-slave-updates \ + ndbcluster log-slave-updates wsrep-on \ ; do optexp="--(skip-)?${opt}" optfull="--loose-skip-${opt}" egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |