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 | |
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')
-rw-r--r-- | eclass/mysql-multilib-r1.eclass | 2 | ||||
-rw-r--r-- | eclass/mysql-multilib.eclass | 2 | ||||
-rw-r--r-- | eclass/mysql-v2.eclass | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass index 6c88c7198937..cfe684bc5db1 100644 --- a/eclass/mysql-multilib-r1.eclass +++ b/eclass/mysql-multilib-r1.eclass @@ -887,7 +887,7 @@ mysql-multilib-r1_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}" diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index a5a0b0b4ed42..1ba8ad36e037 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -1044,7 +1044,7 @@ mysql-multilib_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}" 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}" |