svn commit: r203349 - in head/share/examples/kld: cdev/test syscall/test

Wojciech A. Koszek wkoszek at FreeBSD.org
Mon Feb 1 16:13:56 UTC 2010


Author: wkoszek
Date: Mon Feb  1 16:13:56 2010
New Revision: 203349
URL: http://svn.freebsd.org/changeset/base/203349

Log:
  Conform style.Makefile(5) and replace = and += with ?=, which lets you to
  override WARNS.
  
  Reported by:	<marius at nuenneri.ch> and uqs@

Modified:
  head/share/examples/kld/cdev/test/Makefile
  head/share/examples/kld/syscall/test/Makefile

Modified: head/share/examples/kld/cdev/test/Makefile
==============================================================================
--- head/share/examples/kld/cdev/test/Makefile	Mon Feb  1 16:02:14 2010	(r203348)
+++ head/share/examples/kld/cdev/test/Makefile	Mon Feb  1 16:13:56 2010	(r203349)
@@ -68,7 +68,7 @@
 #
 PROG=	testcdev
 NO_MAN=
-WARNS=	5
+WARNS?=	5
 
 MODSTAT= /sbin/kldstat
 

Modified: head/share/examples/kld/syscall/test/Makefile
==============================================================================
--- head/share/examples/kld/syscall/test/Makefile	Mon Feb  1 16:02:14 2010	(r203348)
+++ head/share/examples/kld/syscall/test/Makefile	Mon Feb  1 16:13:56 2010	(r203349)
@@ -3,6 +3,6 @@
 
 PROG=	call
 NO_MAN=
-WARNS+=	5
+WARNS?=	5
 
 .include <bsd.prog.mk>


More information about the svn-src-head mailing list