Module Name: src
Committed By: martin
Date: Sun Jan 2 13:49:16 UTC 2011
Modified Files:
src/tests/lib/libc/ieeefp: Makefile
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/ieeefp/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/ieeefp/Makefile
diff -u src/tests/lib/libc/ieeefp/Makefile:1.1 src/tests/lib/libc/ieeefp/Makefile:1.2
--- src/tests/lib/libc/ieeefp/Makefile:1.1 Sun Jan 2 03:51:21 2011
+++ src/tests/lib/libc/ieeefp/Makefile Sun Jan 2 13:49:15 2011
@@ -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>
@@ -10,5 +10,7 @@
TESTS_C+= t_subnormal
LDADD.t_subnormal+=-lm
+WARNS=1
.include <bsd.test.mk>
+