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
 




Reply via email to