diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-01-15 12:12:41 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-01-15 12:12:41 +0000 |
commit | ab399daccd2476717be9e5aa5943ae6f45987643 (patch) | |
tree | 5a93cf2f0dac10e1df70e5509331f3993bffad2e /eclass | |
parent | dev-vcs/git-cola: Version Bump (diff) | |
download | historical-ab399daccd2476717be9e5aa5943ae6f45987643.tar.gz historical-ab399daccd2476717be9e5aa5943ae6f45987643.tar.bz2 historical-ab399daccd2476717be9e5aa5943ae6f45987643.zip |
Actually enable in-source build support.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/autotools-multilib.eclass | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 6edd09545468..ebb0697a4e8b 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1114 2014/01/15 01:12:10 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1115 2014/01/15 12:12:41 mgorny Exp $ + + 15 Jan 2014; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass: + Actually enable in-source build support. 15 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass: vdr-plugin.eclass marked @DEAD diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass index 655c55dc1025..a7c647929894 100644 --- a/eclass/autotools-multilib.eclass +++ b/eclass/autotools-multilib.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.19 2013/11/24 10:53:43 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.20 2014/01/15 12:12:41 mgorny Exp $ # @ECLASS: autotools-multilib.eclass # @MAINTAINER: @@ -29,10 +29,6 @@ case ${EAPI:-0} in *) die "EAPI=${EAPI} is not supported" ;; esac -if [[ ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then - die "${ECLASS}: multilib support requires out-of-source builds." -fi - inherit autotools-utils eutils multilib-build multilib-minimal EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |