diff options
author | Brian Evans <grknight@gentoo.org> | 2015-02-16 17:25:14 +0000 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-02-16 17:25:14 +0000 |
commit | e6201b81d3ea64879a3c56207c382dedafa2b876 (patch) | |
tree | 665fcfa8bad9af00dc169b3f91be7cdd65c31d3a /eclass/mysql-multilib.eclass | |
parent | Fix bug #529344 (add selinux-dropbox dependency when USE="selinux") (diff) | |
download | gentoo-2-e6201b81d3ea64879a3c56207c382dedafa2b876.tar.gz gentoo-2-e6201b81d3ea64879a3c56207c382dedafa2b876.tar.bz2 gentoo-2-e6201b81d3ea64879a3c56207c382dedafa2b876.zip |
Adjust mysql-cluster-7.3* virtual
Diffstat (limited to 'eclass/mysql-multilib.eclass')
-rw-r--r-- | eclass/mysql-multilib.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index a8829ffc8f09..923ea312792e 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-multilib.eclass,v 1.14 2015/02/10 18:14:23 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-multilib.eclass,v 1.15 2015/02/16 17:25:14 grknight Exp $ # @ECLASS: mysql-multilib.eclass # @MAINTAINER: @@ -66,7 +66,8 @@ MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" # Cluster is a special case... if [[ "${PN}" == "mysql-cluster" ]]; then case $PV in - 7.2*|7.3*) MYSQL_PV_MAJOR=5.5 ;; + 7.2*) MYSQL_PV_MAJOR=5.5 ;; + 7.3*) MYSQL_PV_MAJOR=5.6 ;; esac fi |