diff options
author | 2013-03-09 21:36:07 +0000 | |
---|---|---|
committer | 2013-03-09 21:36:07 +0000 | |
commit | 6b4c1f459323a7b8e21d4663469a933f86eb21b3 (patch) | |
tree | e691c13a62bc9a6054dbe0ca62dfcba2b7d22628 /eclass | |
parent | fix build time failure wrt #460528, fix a few non-fatal typos (diff) | |
download | historical-6b4c1f459323a7b8e21d4663469a933f86eb21b3.tar.gz historical-6b4c1f459323a7b8e21d4663469a933f86eb21b3.tar.bz2 historical-6b4c1f459323a7b8e21d4663469a933f86eb21b3.zip |
Bug #401733: nested configure scripts in MySQL generate unrecognized options false positives when toplevel configure passes downwards.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/mysql-autotools.eclass | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 072c105122c5..8fb0e0d53579 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.730 2013/03/09 21:05:50 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.731 2013/03/09 21:36:07 robbat2 Exp $ + + 09 Mar 2013; Robin H. Johnson <robbat2@gentoo.org> mysql-autotools.eclass: + Bug #401733: nested configure scripts in MySQL generate unrecognized options + false positives when toplevel configure passes downwards. 09 Mar 2013; Tom Wijsman <TomWij@gentoo.org> kernel-2.eclass: Kernel sources and (gen)patches now use xz instead of bz2. Bug #421721. diff --git a/eclass/mysql-autotools.eclass b/eclass/mysql-autotools.eclass index 70b5123dcaaf..2cb6721e726a 100644 --- a/eclass/mysql-autotools.eclass +++ b/eclass/mysql-autotools.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.15 2013/02/13 00:40:57 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.16 2013/03/09 21:36:07 robbat2 Exp $ # @ECLASS: mysql-autotools.eclass # @MAINTAINER: @@ -456,6 +456,8 @@ mysql-autotools_src_prepare() { # @DESCRIPTION: # Configure mysql to build the code for Gentoo respecting the use flags. mysql-autotools_src_configure() { + # bug 401733 + export QA_CONFIGURE_OPTIONS=".*" # Make sure the vars are correctly initialized mysql_init_vars |