diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-06 21:48:19 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-06 21:48:19 +0000 |
commit | 858d313f81bfa5a1aab75705b75b86df75580743 (patch) | |
tree | 8577fb662edd111a0f0e74acf90828195b775c4f /dev-db | |
parent | Stable on sparc. (Manifest recommit) (diff) | |
download | gentoo-2-858d313f81bfa5a1aab75705b75b86df75580743.tar.gz gentoo-2-858d313f81bfa5a1aab75705b75b86df75580743.tar.bz2 gentoo-2-858d313f81bfa5a1aab75705b75b86df75580743.zip |
Fix use invocation
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/mysql/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/mysql/mysql-4.0.17.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-db/mysql/ChangeLog b/dev-db/mysql/ChangeLog index 90daf0df0d46..58c333eb8144 100644 --- a/dev-db/mysql/ChangeLog +++ b/dev-db/mysql/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/mysql # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.106 2004/06/01 23:44:33 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.107 2004/06/06 21:48:19 agriffis Exp $ + + 06 Jun 2004; Aron Griffis <agriffis@gentoo.org> mysql-4.0.17.ebuild: + Fix use invocation 01 Jun 2004; Tom Gall <tgall@gentoo.org> mysql-4.0.20.ebuild: stable on ppc64, bug #52701 diff --git a/dev-db/mysql/mysql-4.0.17.ebuild b/dev-db/mysql/mysql-4.0.17.ebuild index 885a129c8bad..40369192af1c 100644 --- a/dev-db/mysql/mysql-4.0.17.ebuild +++ b/dev-db/mysql/mysql-4.0.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.0.17.ebuild,v 1.10 2004/05/23 13:36:43 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.0.17.ebuild,v 1.11 2004/06/06 21:48:19 agriffis Exp $ inherit eutils #to accomodate -laadeedah releases @@ -47,8 +47,8 @@ pkg_setup() { warning # MySQL on mips cannot link to berkdb due to issues. - if [ "`use mips`" ]; then - if [ "`use berkdb`" ]; then + if use mips; then + if use berkdb; then echo -e "" eerror "You cannot link MySQL into berkeley db on mips. Please remove the \"berkdb\"" eerror "flag from your USE settings and try again." |