Author: ngie Date: Mon Jun 15 07:13:23 2015 New Revision: 284408 URL: https://svnweb.freebsd.org/changeset/base/284408
Log: Ensure TESTSDIR is defined before bsd.test.mk is .include'd MFC after: 1 week Modified: head/share/mk/bsd.test.mk Modified: head/share/mk/bsd.test.mk ============================================================================== --- head/share/mk/bsd.test.mk Mon Jun 15 06:48:43 2015 (r284407) +++ head/share/mk/bsd.test.mk Mon Jun 15 07:13:23 2015 (r284408) @@ -10,6 +10,10 @@ __<bsd.test.mk>__: +.ifndef TESTSDIR +.error "Please define TESTSDIR when including bsd.test.mk" +.endif + # List of subdirectories containing tests into which to recurse. This has the # same semantics as SUBDIR at build-time. However, the directories listed here # get registered into the run-time test suite definitions so that the test _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"