From 306c3c4d9084ba42d118b6187e66074e0d12b31d Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Mon, 11 Apr 2016 21:15:48 +0000 Subject: [PATCH] Fix appending -O0 to CFLAGS The previous method would completely nerf CFLAGS once bsd.progs.mk had recursed into the per-PROG logic and make the CFLAGS for tap testcases to -O0, instead of appending to CFLAGS for all of the tap testcases. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division --- lib/msun/tests/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/msun/tests/Makefile b/lib/msun/tests/Makefile index 8b114fde1c7c..b18c07d5a115 100644 --- a/lib/msun/tests/Makefile +++ b/lib/msun/tests/Makefile @@ -62,9 +62,9 @@ TAP_TESTS_C+= next_test TAP_TESTS_C+= rem_test TAP_TESTS_C+= trig_test -.for t in ${TAP_TESTS_C} -CFLAGS.$t+= -O0 -.endfor +.if !empty(PROG) && !empty(TAP_TESTS_C:M${PROG}) +CFLAGS+= -O0 +.endif CSTD= c99