aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2014-11-08 03:20:56 +0000
committerEnji Cooper <ngie@FreeBSD.org>2014-11-08 03:20:56 +0000
commitba576ca5843b73f9c76ab74d19a44440ac39b097 (patch)
tree7d113297b02fb7ca94129adc0c3ef4b091b1bd11
parent945e15624bd7d5baa28ea00dc8ef97c8abf3c79a (diff)
downloadsrc-ba576ca5843b73f9c76ab74d19a44440ac39b097.tar.gz
src-ba576ca5843b73f9c76ab74d19a44440ac39b097.zip
Use PROGS instead of PROG and remove unnecessary SRCS?= assignment
Using PROG instead of PROGS will in cases of high -j with -DNO_ROOT cause the PROG to show up more than once as it's handling the SCRIPTS install case in a recursive manner, separate from the non-recursive case After the recent batch of commits to bsd.progs.mk to fix behavior with how variables are defaulted to, explicitly setting SRCS for a PROG is no longer required MFC after: 1 week Reviewed by: asomers Phabric: D1130 Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=274267
-rw-r--r--tests/sys/netinet/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/sys/netinet/Makefile b/tests/sys/netinet/Makefile
index e271e2fe1c63..3f65fb6b3e98 100644
--- a/tests/sys/netinet/Makefile
+++ b/tests/sys/netinet/Makefile
@@ -3,9 +3,8 @@
TESTSDIR= ${TESTSBASE}/sys/netinet
BINDIR= ${TESTSDIR}
-ATF_TESTS_SH+= fibs_test
-PROG= udp_dontroute
-SRCS= udp_dontroute.c
+ATF_TESTS_SH= fibs_test
+PROGS= udp_dontroute
MAN=
WARNS?= 6