Module Name: src
Committed By: christos
Date: Tue Aug 16 10:35:03 UTC 2011
Modified Files:
src/libexec/atrun: Makefile
src/libexec/rshd: Makefile
Log Message:
document non-literal format strings
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/libexec/atrun/Makefile
cvs rdiff -u -r1.18 -r1.19 src/libexec/rshd/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/atrun/Makefile
diff -u src/libexec/atrun/Makefile:1.13 src/libexec/atrun/Makefile:1.14
--- src/libexec/atrun/Makefile:1.13 Wed Sep 18 02:24:33 2002
+++ src/libexec/atrun/Makefile Tue Aug 16 06:35:03 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2002/09/18 06:24:33 lukem Exp $
+# $NetBSD: Makefile,v 1.14 2011/08/16 10:35:03 christos Exp $
.include <bsd.own.mk>
@@ -7,5 +7,6 @@
MAN= atrun.8
CPPFLAGS+= -I${NETBSDSRCDIR}/usr.bin/at
+COPTS.atrun.c = -Wno-format-nonliteral
.include <bsd.prog.mk>
Index: src/libexec/rshd/Makefile
diff -u src/libexec/rshd/Makefile:1.18 src/libexec/rshd/Makefile:1.19
--- src/libexec/rshd/Makefile:1.18 Sun Mar 15 22:24:57 2009
+++ src/libexec/rshd/Makefile Tue Aug 16 06:35:03 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2009/03/16 02:24:57 lukem Exp $
+# $NetBSD: Makefile,v 1.19 2011/08/16 10:35:03 christos Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
.include <bsd.own.mk>
@@ -21,4 +21,6 @@
LDADD+= -lpam ${PAM_STATIC_LDADD}
.endif
+COPTS.rshd.c = -Wno-format-nonliteral
+
.include <bsd.prog.mk>