Module Name: src Committed By: jnemeth Date: Wed Aug 22 07:47:20 UTC 2012
Modified Files: src/sbin/modload: Makefile src/sbin/modunload: Makefile Log Message: Set WARNS=5. No warnings/errors were found with a test compile. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sbin/modload/Makefile cvs rdiff -u -r1.14 -r1.15 src/sbin/modunload/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sbin/modload/Makefile diff -u src/sbin/modload/Makefile:1.15 src/sbin/modload/Makefile:1.16 --- src/sbin/modload/Makefile:1.15 Mon Dec 13 20:48:44 2010 +++ src/sbin/modload/Makefile Wed Aug 22 07:47:18 2012 @@ -1,7 +1,9 @@ -# $NetBSD: Makefile,v 1.15 2010/12/13 20:48:44 pooka Exp $ +# $NetBSD: Makefile,v 1.16 2012/08/22 07:47:18 jnemeth Exp $ .include <bsd.own.mk> +WARNS= 5 + RUMPPRG=modload SRCS= main.c MAN= modload.8 Index: src/sbin/modunload/Makefile diff -u src/sbin/modunload/Makefile:1.14 src/sbin/modunload/Makefile:1.15 --- src/sbin/modunload/Makefile:1.14 Mon Dec 13 20:48:45 2010 +++ src/sbin/modunload/Makefile Wed Aug 22 07:47:19 2012 @@ -1,4 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2010/12/13 20:48:45 pooka Exp $ +# $NetBSD: Makefile,v 1.15 2012/08/22 07:47:19 jnemeth Exp $ + +WARNS= 5 RUMPPRG=modunload SRCS= main.c