Module Name: src
Committed By: pooka
Date: Mon Dec 1 23:08:15 UTC 2014
Modified Files:
src/sys/rump: Makefile.rump
Log Message:
need -Wno-unused-parameter with -Wextra
To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 src/sys/rump/Makefile.rump
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/Makefile.rump
diff -u src/sys/rump/Makefile.rump:1.101 src/sys/rump/Makefile.rump:1.102
--- src/sys/rump/Makefile.rump:1.101 Mon Dec 1 22:58:41 2014
+++ src/sys/rump/Makefile.rump Mon Dec 1 23:08:15 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.rump,v 1.101 2014/12/01 22:58:41 pooka Exp $
+# $NetBSD: Makefile.rump,v 1.102 2014/12/01 23:08:15 pooka Exp $
#
.if !defined(_RUMP_MK)
@@ -123,7 +123,8 @@ DPSRCS+= ${RUMPTOP}/Makefile.rump
#
# no easy way to get WARNS out of bsd.sys.mk
-RUMPCOMP_USER_WARNFLAGS=-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes
+RUMPCOMP_USER_WARNFLAGS= -Wall -Wextra -Wno-unused-parameter
+RUMPCOMP_USER_WARNFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
.ifdef RUMPCOMP_USER_SRCS && !defined(RUMPKERN_ONLY)
.if empty(DESTDIR)