diff options
author | 2007-01-08 20:38:58 +0000 | |
---|---|---|
committer | 2007-01-08 20:38:58 +0000 | |
commit | cda69e988b7e3e370ad7d8d1f5c52c08ada40e64 (patch) | |
tree | 26f413ca0bdc265ed6f84d07b1f422420aa77e17 /eclass/mysql.eclass | |
parent | Stable on ppc wrt bug #159508. (diff) | |
download | gentoo-2-cda69e988b7e3e370ad7d8d1f5c52c08ada40e64.tar.gz gentoo-2-cda69e988b7e3e370ad7d8d1f5c52c08ada40e64.tar.bz2 gentoo-2-cda69e988b7e3e370ad7d8d1f5c52c08ada40e64.zip |
partly fix bug #160911
Diffstat (limited to 'eclass/mysql.eclass')
-rw-r--r-- | eclass/mysql.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index fe08eb12fbf8..4075e482ca74 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.65 2007/01/08 09:12:45 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.66 2007/01/08 20:38:58 vivo Exp $ # kate: encoding utf-8; eol unix; # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; # kate: word-wrap-column 80; word-wrap off; @@ -801,7 +801,7 @@ mysql_pkg_postinst() { fi #einfo "you may want to read slotting upgrade documents in the overlay" - if useq "pbxt" && mysql_version_is_at_least "5.1" ; then + if mysql_version_is_at_least "5.1" && useq "pbxt" ; then # TODO tell it better ;-) elog "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" elog "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |