svn commit: r241768 - stable/8/usr.bin/make

Andriy Gapon avg at FreeBSD.org
Sat Oct 20 09:23:14 UTC 2012


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);


More information about the svn-src-all mailing list