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 2980013877A for ; Thu, 31 Jul 2014 23:25:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3588E08CE; Thu, 31 Jul 2014 23:25:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98371E08CE for ; Thu, 31 Jul 2014 23:25:02 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 949C033F8C7 for ; Thu, 31 Jul 2014 23:25:01 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2263) id 412752004E; Thu, 31 Jul 2014 23:24:56 +0000 (UTC) From: "Maciej Mrozowski (reavertm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, reavertm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: autotools-utils.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: autotools-utils.eclass X-VCS-Directories: eclass X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140731232457.412752004E@flycatcher.gentoo.org> Date: Thu, 31 Jul 2014 23:24:56 +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: 7212ff0d-d773-40bc-8fcf-8be5660f84c2 X-Archives-Hash: 1ac0ab0304d5fb1a0bf3a412827e5029 reavertm 14/07/31 23:24:56 Modified: autotools-utils.eclass Log: When probing for supported test targets for make, explicity ignore recipe errors even if we run make in dry-run mode. Revision Changes Path 1.74 eclass/autotools-utils.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?rev=1.74&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?rev=1.74&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools-utils.eclass?r1=1.73&r2=1.74 Index: autotools-utils.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v retrieving revision 1.73 retrieving revision 1.74 diff -u -r1.73 -r1.74 --- autotools-utils.eclass 11 Mar 2014 23:55:44 -0000 1.73 +++ autotools-utils.eclass 31 Jul 2014 23:24:56 -0000 1.74 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.73 2014/03/11 23:55:44 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.74 2014/07/31 23:24:56 reavertm Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -468,9 +468,9 @@ _check_build_dir pushd "${BUILD_DIR}" > /dev/null || die - if make -n check "${@}" &>/dev/null; then + if make -ni check "${@}" &>/dev/null; then emake check "${@}" || die 'emake check failed.' - elif make -n test "${@}" &>/dev/null; then + elif make -ni test "${@}" &>/dev/null; then emake test "${@}" || die 'emake test failed.' fi