commit: b1bd20fde61bf8404a259f45413ea4a7eccfc6a5
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 19 01:35:28 2014 +0000
Commit: Brian Evans <grknight <AT> lavabit <DOT> com>
CommitDate: Thu Jun 19 01:35:28 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=b1bd20fd
[eclass] Fix up missing parameter in multilib
---
eclass/mysql-multilib.eclass | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index fa2ab52..53df055 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -178,7 +178,8 @@ SLOT="0"
IUSE="+community cluster debug embedded extraengine jemalloc latin1
max-idx-128 minimal
+perl profiling selinux ssl systemtap static static-libs tcmalloc test"
-if [[ ${PN} == "mariadb" || ${PN} == "mariadb-galera" ]] ||
mysql_check_version_range "5.5.38 to 5.6.11.99" ; then
+if [[ ${PN} == "mariadb" || ${PN} == "mariadb-galera" ]] && \
+ mysql_version_is_at_least "5.5" || mysql_check_version_range "5.5.38 to
5.6.11.99" ; then
IUSE="bindist ${IUSE}"
fi