diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2018-10-26 08:12:28 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2018-10-26 08:12:28 +0000 |
commit | 4b48b463ed07fe388f9ba841065499dfaa97199b (patch) | |
tree | 672a54a5f24a16072ad407caa773f420b73d3343 /lib/csu | |
parent | ee21b0efc8cc482f9060e80c2e202746128e2486 (diff) | |
download | src-test2-4b48b463ed07fe388f9ba841065499dfaa97199b.tar.gz src-test2-4b48b463ed07fe388f9ba841065499dfaa97199b.zip |
Notes
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/tests/Makefile.tests | 2 | ||||
-rw-r--r-- | lib/csu/tests/dynamic/Makefile | 1 | ||||
-rw-r--r-- | lib/csu/tests/static/Makefile | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/tests/Makefile.tests b/lib/csu/tests/Makefile.tests index 4e766ddd59b2..64b4227fe48e 100644 --- a/lib/csu/tests/Makefile.tests +++ b/lib/csu/tests/Makefile.tests @@ -4,6 +4,8 @@ ATF_TESTS_C+= init_test ATF_TESTS_C+= fini_test ATF_TESTS_CXX+= cxx_constructors +WARNS?= 5 + .if exists(${.CURDIR:H:H}/${MACHINE_ARCH}) CFLAGS+= -I${.CURDIR:H:H}/${MACHINE_ARCH} .else diff --git a/lib/csu/tests/dynamic/Makefile b/lib/csu/tests/dynamic/Makefile index 61c9a322e7b5..190962f9c3cc 100644 --- a/lib/csu/tests/dynamic/Makefile +++ b/lib/csu/tests/dynamic/Makefile @@ -1,7 +1,6 @@ # $FreeBSD$ .PATH: ${.CURDIR:H} -WARNS?= 6 .include "../Makefile.tests" .include <bsd.test.mk> diff --git a/lib/csu/tests/static/Makefile b/lib/csu/tests/static/Makefile index c5261186e258..8b01cf8777b2 100644 --- a/lib/csu/tests/static/Makefile +++ b/lib/csu/tests/static/Makefile @@ -2,7 +2,6 @@ .PATH: ${.CURDIR:H} NO_SHARED= -WARNS?= 6 .include "../Makefile.tests" .include <bsd.test.mk> |