svn commit: r241767 - stable/9/usr.bin/make

Andriy Gapon avg at FreeBSD.org
Sat Oct 20 09:22:58 UTC 2012


Author: avg
Date: Sat Oct 20 09:22:57 2012
New Revision: 241767
URL: http://svn.freebsd.org/changeset/base/241767

Log:
  MFC r241280: make: report :M or :N pattern in debug mode

Modified:
  stable/9/usr.bin/make/var.c
Directory Properties:
  stable/9/usr.bin/make/   (props changed)

Modified: stable/9/usr.bin/make/var.c
==============================================================================
--- stable/9/usr.bin/make/var.c	Sat Oct 20 08:23:05 2012	(r241766)
+++ stable/9/usr.bin/make/var.c	Sat Oct 20 09:22:57 2012	(r241767)
@@ -1421,6 +1421,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-stable-9 mailing list