diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-11-26 20:43:55 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-11-26 20:43:55 +0000 |
commit | 3b143c5d2dfe723097a2ce16e34b57d0aa2b4897 (patch) | |
tree | c2c9b585637d703e4ca02038a1f4a15b3ff97d62 /eclass/autotools-utils.eclass | |
parent | Add failure handling for pushd/popd calls. (diff) | |
download | historical-3b143c5d2dfe723097a2ce16e34b57d0aa2b4897.tar.gz historical-3b143c5d2dfe723097a2ce16e34b57d0aa2b4897.tar.bz2 historical-3b143c5d2dfe723097a2ce16e34b57d0aa2b4897.zip |
Remove implicit IUSE=debug deprecation warning.
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index f3826d0fe28b..78057575cc21 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.26 2011/11/26 20:42:02 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.27 2011/11/26 20:43:55 mgorny Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -233,16 +233,6 @@ autotools-utils_src_configure() { # Common args local econfargs=() - # Handle debug found in IUSE - if in_iuse debug; then - local debugarg=$(use_enable debug) - if ! has "${debugarg}" "${myeconfargs[@]}"; then - eqawarn 'Implicit $(use_enable debug) for IUSE="debug" is no longer supported.' - eqawarn 'Please add the necessary arg to myeconfargs if requested.' - eqawarn 'The autotools-utils eclass will stop warning about it on Oct 15th.' - fi - fi - # Handle static-libs found in IUSE, disable them by default if in_iuse static-libs; then econfargs+=( |