From owner-svn-src-stable@FreeBSD.ORG Sat Oct 20 09:23:14 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05BDCEE8; Sat, 20 Oct 2012 09:23:14 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF7808FC08; Sat, 20 Oct 2012 09:23:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9K9NDxk095856; Sat, 20 Oct 2012 09:23:13 GMT (envelope-from avg@svn.freebsd.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9K9NDH5095854; Sat, 20 Oct 2012 09:23:13 GMT (envelope-from avg@svn.freebsd.org) Message-Id: <201210200923.q9K9NDH5095854@svn.freebsd.org> From: Andriy Gapon Date: Sat, 20 Oct 2012 09:23:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r241768 - stable/8/usr.bin/make X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 09:23:14 -0000 Author: avg Date: Sat Oct 20 09:23:13 2012 New Revision: 241768 URL: http://svn.freebsd.org/changeset/base/241768 Log: MFC r241280: make: report :M or :N pattern in debug mode Modified: stable/8/usr.bin/make/var.c Directory Properties: stable/8/usr.bin/make/ (props changed) Modified: stable/8/usr.bin/make/var.c ============================================================================== --- stable/8/usr.bin/make/var.c Sat Oct 20 09:22:57 2012 (r241767) +++ stable/8/usr.bin/make/var.c Sat Oct 20 09:23:13 2012 (r241768) @@ -1423,6 +1423,7 @@ modifier_M(VarParser *vp, const char val vp->ptr++; } *ptr = '\0'; + DEBUGF(VAR, ("Pattern :%s\n", patt)); if (modifier == 'M') { newValue = VarModify(value, VarMatch, patt);