svn commit: r274539 - stable/10/tests/sys/netinet
Garrett Cooper
ngie at FreeBSD.org
Sat Nov 15 05:02:07 UTC 2014
Author: ngie
Date: Sat Nov 15 05:02:06 2014
New Revision: 274539
URL: https://svnweb.freebsd.org/changeset/base/274539
Log:
MFC r274267:
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
Reviewed by: asomers
Phabric: D1130
Sponsored by: EMC / Isilon Storage Division
Modified:
stable/10/tests/sys/netinet/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/tests/sys/netinet/Makefile
==============================================================================
--- stable/10/tests/sys/netinet/Makefile Sat Nov 15 03:39:58 2014 (r274538)
+++ stable/10/tests/sys/netinet/Makefile Sat Nov 15 05:02:06 2014 (r274539)
@@ -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
NO_MAN=
WARNS?= 6
More information about the svn-src-stable
mailing list