Use WARNS?= instead of WARNS= in Makefiles so that global warning

settings can override local ones.

Pointed out by:	ru
This commit is contained in:
Robert Watson 2005-01-22 22:42:39 +00:00
parent 5fb99dcabe
commit 20ef44d423
3 changed files with 3 additions and 3 deletions

View file

@ -2,6 +2,6 @@
PROG= udpconnectjail
NO_MAN= yes
WARNS= 3
WARNS?= 2
.include <bsd.prog.mk>

View file

@ -4,6 +4,6 @@
PROG= listenclose
NO_MAN= yes
WARNS= 2
WARNS?= 2
.include <bsd.prog.mk>

View file

@ -4,6 +4,6 @@
PROG= reconnect
NO_MAN= yes
WARNS= 2
WARNS?= 2
.include <bsd.prog.mk>