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 4BF501381F3 for ; Fri, 7 Dec 2012 17:56:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C8DEE05DD; Fri, 7 Dec 2012 17:56:24 +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 738F6E05DD for ; Fri, 7 Dec 2012 17:56:24 +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 8ECE033DC05 for ; Fri, 7 Dec 2012 17:56:23 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 58CD92171D; Fri, 7 Dec 2012 17:56:22 +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 distutils-r1.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog distutils-r1.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: <20121207175622.58CD92171D@flycatcher.gentoo.org> Date: Fri, 7 Dec 2012 17:56:22 +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: 8c5e1b64-4d61-4412-b58a-fbb1db147161 X-Archives-Hash: 29838c3b2afcc8dd916c5d8959785db1 mgorny 12/12/07 17:56:22 Modified: ChangeLog distutils-r1.eclass Log: Do not die when sub-phases return non-true value. This is inconsistent with normal phase behavior and not really useful since phase functions are supposed to die on their own. Revision Changes Path 1.548 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.548&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.548&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.547&r2=1.548 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.547 retrieving revision 1.548 diff -u -r1.547 -r1.548 --- ChangeLog 7 Dec 2012 17:55:04 -0000 1.547 +++ ChangeLog 7 Dec 2012 17:56:22 -0000 1.548 @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.547 2012/12/07 17:55:04 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.548 2012/12/07 17:56:22 mgorny Exp $ + + 07 Dec 2012; Michał Górny distutils-r1.eclass: + Do not die when sub-phases return non-true value. This is inconsistent with + normal phase behavior and not really useful since phase functions are + supposed to die on their own. 07 Dec 2012; Michał Górny distutils-r1.eclass: Pass the best Python implementation info to the implementation-common phase 1.26 eclass/distutils-r1.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.26&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.26&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?r1=1.25&r2=1.26 Index: distutils-r1.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- distutils-r1.eclass 7 Dec 2012 17:55:04 -0000 1.25 +++ distutils-r1.eclass 7 Dec 2012 17:56:22 -0000 1.26 @@ -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/distutils-r1.eclass,v 1.25 2012/12/07 17:55:04 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.26 2012/12/07 17:56:22 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -380,9 +380,9 @@ fi if [[ ${DISTUTILS_NO_PARALLEL_BUILD} ]]; then - "${@}" || die "${1} failed." + "${@}" else - multijob_child_init "${@}" || die "${1} failed." + multijob_child_init "${@}" fi if [[ ${DISTUTILS_IN_SOURCE_BUILD} ]]; then