diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2011-07-29 02:51:25 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2011-07-29 02:51:25 +0000 |
commit | 8c04f5a8438b9df04a79706c3497696827eefb55 (patch) | |
tree | 33491f01cf2b7ee2d5cdad3d6ad7414343da74c2 /eclass/mysql_fx.eclass | |
parent | Version bump. (diff) | |
download | historical-8c04f5a8438b9df04a79706c3497696827eefb55.tar.gz historical-8c04f5a8438b9df04a79706c3497696827eefb55.tar.bz2 historical-8c04f5a8438b9df04a79706c3497696827eefb55.zip |
[eclass/mysql_fx] Synced with overlay eclass - should fix new missing /mysql issue - bug 375063.
Diffstat (limited to 'eclass/mysql_fx.eclass')
-rw-r--r-- | eclass/mysql_fx.eclass | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/eclass/mysql_fx.eclass b/eclass/mysql_fx.eclass index 504f54ae3ba3..ef2331bab2f8 100644 --- a/eclass/mysql_fx.eclass +++ b/eclass/mysql_fx.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql_fx.eclass,v 1.24 2011/07/14 02:11:32 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql_fx.eclass,v 1.25 2011/07/29 02:51:25 jmbsvicetto Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: @@ -229,13 +229,8 @@ mysql_init_vars() { MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} - if [[ ${PN} == "mariadb" ]]; then - MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} - MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} - else - MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include"} - MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)"} - fi + MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} + MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} if [[ -z "${MY_DATADIR}" ]] ; then MY_DATADIR="" |