diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-01-16 04:01:14 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-01-16 04:01:14 +0000 |
commit | 4df7d34e60bf37527501ff992f4ebd0dbe7c3bba (patch) | |
tree | d4e48423d288e786e74efbe1d0d1f8509bd5dbd9 /eclass | |
parent | whitespace (diff) | |
download | gentoo-2-4df7d34e60bf37527501ff992f4ebd0dbe7c3bba.tar.gz gentoo-2-4df7d34e60bf37527501ff992f4ebd0dbe7c3bba.tar.bz2 gentoo-2-4df7d34e60bf37527501ff992f4ebd0dbe7c3bba.zip |
Use --without-readline when building the minimal version as so not to use the bundled old readline, per bug #192149.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 9111ba56ceaa..1caf5e6fafc9 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.83 2007/11/08 09:42:55 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.84 2008/01/16 04:01:14 robbat2 Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: Luca Longinotti <chtekk@gentoo.org> @@ -251,7 +251,7 @@ configure_minimal() { # These are things we exclude from a minimal build, please # note that the server actually does get built and installed, # but we then delete it before packaging. - local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" + local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" for i in ${minimal_exclude_list} ; do myconf="${myconf} --without-${i}" @@ -453,7 +453,6 @@ pbxt_src_install() { # # EBUILD FUNCTIONS # - mysql_pkg_setup() { if hasq test ${FEATURES} ; then if ! use minimal ; then |