diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-05-15 22:51:56 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-05-15 22:51:56 +0000 |
commit | 6710eaff91fc0173314cdac71bbecb5d52573fb9 (patch) | |
tree | f215f30da887ded9a5b8ba946eb00c6a45d1c492 /eclass | |
parent | Revision bump adds upstream patch to fix crash when open sqlite db file by St... (diff) | |
download | gentoo-2-6710eaff91fc0173314cdac71bbecb5d52573fb9.tar.gz gentoo-2-6710eaff91fc0173314cdac71bbecb5d52573fb9.tar.bz2 gentoo-2-6710eaff91fc0173314cdac71bbecb5d52573fb9.zip |
Bug #415427: PBXT build was broken entirely in 5.1.62, and not actually running in 5.1.61 and prior builds since we switched to the mysql-v2 eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql-autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql-autotools.eclass b/eclass/mysql-autotools.eclass index 297a66e781bc..e8e74bdbd4a1 100644 --- a/eclass/mysql-autotools.eclass +++ b/eclass/mysql-autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.6 2012/04/18 02:08:34 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.7 2012/05/15 22:51:56 robbat2 Exp $ # @ECLASS: mysql-autotools.eclass # @MAINTAINER: @@ -397,7 +397,7 @@ mysql-autotools_src_prepare() { popd >/dev/null fi - if pbxt_available && [[ "${PBXT_NEWSTYLE}" != "1" ]] && use pbxt ; then + if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then einfo "Adding storage engine: PBXT" pushd "${S}"/storage >/dev/null i='pbxt' |