svn commit: r241312 - head

Marcel Moolenaar marcel at FreeBSD.org
Sun Oct 7 17:48:39 UTC 2012


Author: marcel
Date: Sun Oct  7 17:48:38 2012
New Revision: 241312
URL: http://svn.freebsd.org/changeset/base/241312

Log:
  Fix the showconfig target. bmake sends debug output to stderr.
  
  Submitted by: Simon Garrety <sjg at juniper.net>

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sun Oct  7 16:45:38 2012	(r241311)
+++ head/Makefile.inc1	Sun Oct  7 17:48:38 2012	(r241312)
@@ -1569,7 +1569,7 @@ check-old: check-old-files check-old-lib
 # showconfig - show build configuration.
 #
 showconfig:
-	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
+	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
 
 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/


More information about the svn-src-all mailing list