Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Nov 2014 03:20:57 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274267 - head/tests/sys/netinet
Message-ID:  <201411080320.sA83Kv80035039@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Nov  8 03:20:56 2014
New Revision: 274267
URL: https://svnweb.freebsd.org/changeset/base/274267

Log:
  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

Modified:
  head/tests/sys/netinet/Makefile

Modified: head/tests/sys/netinet/Makefile
==============================================================================
--- head/tests/sys/netinet/Makefile	Sat Nov  8 02:53:55 2014	(r274266)
+++ head/tests/sys/netinet/Makefile	Sat Nov  8 03:20:56 2014	(r274267)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411080320.sA83Kv80035039>