svn commit: r255127 - head/contrib/bmake

Simon J. Gerraty sjg at FreeBSD.org
Sun Sep 1 18:59:10 UTC 2013


Author: sjg
Date: Sun Sep  1 18:59:09 2013
New Revision: 255127
URL: http://svnweb.freebsd.org/changeset/base/255127

Log:
  Pay attention to errCheck!
  
  PR:		181715

Modified:
  head/contrib/bmake/compat.c

Modified: head/contrib/bmake/compat.c
==============================================================================
--- head/contrib/bmake/compat.c	Sun Sep  1 17:37:19 2013	(r255126)
+++ head/contrib/bmake/compat.c	Sun Sep  1 18:59:09 2013	(r255127)
@@ -340,7 +340,7 @@ again:
 	/*
 	 * The following work for any of the builtin shell specs.
 	 */
-	if (shellErrFlag) {
+	if (errCheck && shellErrFlag) {
 	    shargv[shargc++] = shellErrFlag;
 	}
 	if (DEBUG(SHELL))


More information about the svn-src-all mailing list