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 1569013827E for ; Wed, 11 Dec 2013 21:47:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 669B2E0D07; Wed, 11 Dec 2013 21:47:22 +0000 (UTC) Received: from a1www.kph.uni-mainz.de (a1www.kph.uni-mainz.de [134.93.134.1]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F510E0CD5 for ; Wed, 11 Dec 2013 21:47:20 +0000 (UTC) Received: from a1i15.kph.uni-mainz.de (a1i15.kph.uni-mainz.de [134.93.134.92]) by a1www.kph.uni-mainz.de (8.14.7/8.13.4) with ESMTP id rBBLlJxh030263 for ; Wed, 11 Dec 2013 22:47:19 +0100 Received: from a1i15.kph.uni-mainz.de (localhost [127.0.0.1]) by a1i15.kph.uni-mainz.de (8.14.7/8.14.2) with ESMTP id rBBLlJde003483; Wed, 11 Dec 2013 22:47:19 +0100 Received: (from ulm@localhost) by a1i15.kph.uni-mainz.de (8.14.7/8.14.7/Submit) id rBBLlFSw003475; Wed, 11 Dec 2013 22:47:15 +0100 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21160.56675.91104.198864@a1i15.kph.uni-mainz.de> Date: Wed, 11 Dec 2013 22:47:15 +0100 To: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] some multilib-minimal enhancements [4/6]: ubiquitous multilib--all callbacks In-Reply-To: <52A8DA99.8090908@gentoo.org> References: <52A8DA99.8090908@gentoo.org> X-Mailer: VM 8.2.0b under 24.3.1 (x86_64-pc-linux-gnu) From: Ulrich Mueller X-Archives-Salt: ff7efcc6-89a2-4946-acb2-616645ede68d X-Archives-Hash: 1c88fa8606828c36e7a95f338c4047fc >>>>> On Wed, 11 Dec 2013, hasufell wrote: > I'd actually consider to remove all "*_all" phases since you can achive > the same via: > src_install() { > multilib-minimal_src_install > generic install crap || die > } > and have more control over the call order. It's not completely equivalent: In the above code the einstalldocs function will be called from multilib-minimal_src_install, whereas with multilib_src_install_all it won't be called. Is there actually a need for *_all, apart from the src_install phase? Ulrich