aboutsummaryrefslogtreecommitdiff
path: root/sbin/tunefs/Makefile
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-09-11 13:28:37 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-09-11 13:28:37 +0000
commitecebb3cc1d2d074defc302d8ae6820bb6b20d4fe (patch)
tree82d4975af5d9f605e80daeb706f1b9f5ce4eb59e /sbin/tunefs/Makefile
parentb876085f5589f4e6d531d97ad902c5730ec55339 (diff)
downloadsrc-ecebb3cc1d2d074defc302d8ae6820bb6b20d4fe.tar.gz
src-ecebb3cc1d2d074defc302d8ae6820bb6b20d4fe.zip
Only set WARNS if not defined
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week
Notes
Notes: svn path=/head/; revision=365631
Diffstat (limited to 'sbin/tunefs/Makefile')
-rw-r--r--sbin/tunefs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/tunefs/Makefile b/sbin/tunefs/Makefile
index 7f903b2ef21a..9d0754edca89 100644
--- a/sbin/tunefs/Makefile
+++ b/sbin/tunefs/Makefile
@@ -11,6 +11,6 @@ MOUNT= ${SRCTOP}/sbin/mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
-WARNS= 3
+WARNS?= 3
.include <bsd.prog.mk>