From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4939B198005 for ; Wed, 27 Feb 2013 21:47:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5AE4E0ADB; Wed, 27 Feb 2013 21:47:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47CF7E0ADC for ; Wed, 27 Feb 2013 21:47:45 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EE0A33BE65 for ; Wed, 27 Feb 2013 21:47:39 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 26E652171D; Wed, 27 Feb 2013 21:47:38 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog autotools-multilib.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog autotools-multilib.eclass X-VCS-Directories: eclass X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130227214738.26E652171D@flycatcher.gentoo.org> Date: Wed, 27 Feb 2013 21:47:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c0cf08b2-e44e-4510-8376-df4a13c8da7f X-Archives-Hash: 63dce9b5ed760f6162218bda637de74f mgorny 13/02/27 21:47:38 Modified: ChangeLog autotools-multilib.eclass Log: Export src_prepare() explicitly rather than implicitly through inherits. Revision Changes Path 1.694 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.694&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.694&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.693&r2=1.694 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.693 retrieving revision 1.694 diff -u -r1.693 -r1.694 --- ChangeLog 27 Feb 2013 21:46:31 -0000 1.693 +++ ChangeLog 27 Feb 2013 21:47:38 -0000 1.694 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.693 2013/02/27 21:46:31 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.694 2013/02/27 21:47:38 mgorny Exp $ + + 27 Feb 2013; Michał Górny autotools-multilib.eclass: + Export src_prepare() explicitly rather than implicitly through inherits. 27 Feb 2013; Michał Górny autotools-multilib.eclass: Update description. 1.12 eclass/autotools-multilib.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-multilib.eclass?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-multilib.eclass?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-multilib.eclass?r1=1.11&r2=1.12 Index: autotools-multilib.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- autotools-multilib.eclass 27 Feb 2013 21:46:31 -0000 1.11 +++ autotools-multilib.eclass 27 Feb 2013 21:47:38 -0000 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.11 2013/02/27 21:46:31 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.12 2013/02/27 21:47:38 mgorny Exp $ # @ECLASS: autotools-multilib.eclass # @MAINTAINER: @@ -31,7 +31,11 @@ inherit autotools-utils multilib-build -EXPORT_FUNCTIONS src_configure src_compile src_test src_install +EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install + +autotools-multilib_src_prepare() { + autotools-utils_src_prepare "${@}" +} autotools-multilib_src_configure() { multilib_parallel_foreach_abi autotools-utils_src_configure "${@}"