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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=203349
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>