Stopgap buildfix: gcc complains about test_ops possibly being clobbered

by sigjmp and I can't find a proper way to add -Wno-uninitialized in the
proper place in CFLAGS.
This commit is contained in:
martin 2011-01-02 13:49:15 +00:00
parent f2fcee3be9
commit 7810b05eab
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2011/01/02 03:51:21 pgoyette Exp $ # $NetBSD: Makefile,v 1.2 2011/01/02 13:49:15 martin Exp $
.include <bsd.own.mk> .include <bsd.own.mk>
@ -10,5 +10,7 @@ TESTS_C+= t_round
TESTS_C+= t_subnormal TESTS_C+= t_subnormal
LDADD.t_subnormal+=-lm LDADD.t_subnormal+=-lm
WARNS=1
.include <bsd.test.mk> .include <bsd.test.mk>