diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-05-28 07:46:59 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-05-28 07:46:59 +0000 |
commit | fb87629e8c426302f25014aa4fd7cd649480d4ae (patch) | |
tree | 5be9941bd4f772fa25973c9225ccae71c547ed9f /eclass | |
parent | Fail whenever unable to change directory, wrt #391927. (diff) | |
download | gentoo-2-fb87629e8c426302f25014aa4fd7cd649480d4ae.tar.gz gentoo-2-fb87629e8c426302f25014aa4fd7cd649480d4ae.tar.bz2 gentoo-2-fb87629e8c426302f25014aa4fd7cd649480d4ae.zip |
Remove invalid use check, these should be fixed by now.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/autotools-utils.eclass | 11 |
2 files changed, 5 insertions, 11 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index bb69611a7adb..16a59b0c465a 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.272 2012/05/28 07:45:19 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.273 2012/05/28 07:46:59 mgorny Exp $ + + 28 May 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass: + Remove invalid use check, these should be fixed by now. 28 May 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass: Fail whenever unable to change directory, wrt #391927. diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index c8251dbe8f82..e5458c8cc088 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.52 2012/05/28 07:45:19 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.53 2012/05/28 07:46:59 mgorny Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -259,15 +259,6 @@ remove_libtool_files() { rm -f "${f}" || die fi done - - # check for invalid eclass use - # this is the most commonly used function, so do it here - _check_build_dir - if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then - eqawarn "autotools-utils used but autotools-utils_src_configure was never called." - eqawarn "This is not supported and never was. Please report a bug against" - eqawarn "the offending ebuild. This will become a fatal error in a near future." - fi } # @FUNCTION: autotools-utils_autoreconf |