Conform style.Makefile(5) and replace = and += with ?=, which lets you to

override WARNS.

Reported by:	<marius@nuenneri.ch> and uqs@
This commit is contained in:
Wojciech A. Koszek 2010-02-01 16:13:56 +00:00
parent e024cf2af0
commit 55f031bd90
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@
#
PROG= testcdev
NO_MAN=
WARNS= 5
WARNS?= 5
MODSTAT= /sbin/kldstat

View file

@ -3,6 +3,6 @@
PROG= call
NO_MAN=
WARNS+= 5
WARNS?= 5
.include <bsd.prog.mk>