diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2009-07-06 19:06:03 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2009-07-06 19:06:03 +0000 |
commit | d0119836a31e34944ab1d6def970c1b94d12c37e (patch) | |
tree | bd5e0d9922c7f83fde80fae085aae0d1dc094dff /eclass | |
parent | IUSE defaults for mysql.eclass. (diff) | |
download | gentoo-2-d0119836a31e34944ab1d6def970c1b94d12c37e.tar.gz gentoo-2-d0119836a31e34944ab1d6def970c1b94d12c37e.tar.bz2 gentoo-2-d0119836a31e34944ab1d6def970c1b94d12c37e.zip |
EXPORT_FUNCTIONS goes after inherit.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 99814ab59da3..2520abd8550f 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.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.eclass,v 1.113 2009/07/06 19:05:07 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.114 2009/07/06 19:06:03 robbat2 Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: MySQL Team <mysql-bugs@gentoo.org> @@ -10,6 +10,8 @@ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" +inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator + case "${EAPI:-0}" in 2) EXPORT_FUNCTIONS pkg_setup \ @@ -30,8 +32,6 @@ case "${EAPI:-0}" in ;; esac -inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator - # Shorten the path because the socket path length must be shorter than 107 chars # and we will run a mysql server during test phase S="${WORKDIR}/mysql" |