Module Name: src
Committed By: christos
Date: Sun Mar 6 18:01:28 UTC 2016
Modified Files:
src/usr.bin/vmstat: Makefile
Log Message:
Work around gcc on sparc64 bug
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/usr.bin/vmstat/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/vmstat/Makefile
diff -u src/usr.bin/vmstat/Makefile:1.32 src/usr.bin/vmstat/Makefile:1.33
--- src/usr.bin/vmstat/Makefile:1.32 Tue Jun 3 17:41:56 2014
+++ src/usr.bin/vmstat/Makefile Sun Mar 6 13:01:28 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2014/06/03 21:41:56 joerg Exp $
+# $NetBSD: Makefile,v 1.33 2016/03/06 18:01:28 christos Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
.include <bsd.own.mk>
@@ -16,4 +16,7 @@ BINMODE=2555
CWARNFLAGS.clang+= -Wno-format-extra-args
COPTS.vmstat.c += -Wno-format-nonliteral
+# sparc64 is broken!
+COPTS.vmstat.c += -Wno-error=stack-protector
+
.include <bsd.prog.mk>