svn commit: r289043 - stable/10/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Thu Oct 8 17:55:55 UTC 2015
Author: bdrewery
Date: Thu Oct 8 17:55:53 2015
New Revision: 289043
URL: https://svnweb.freebsd.org/changeset/base/289043
Log:
MFC r284408:
Ensure TESTSDIR is defined before bsd.test.mk is .include'd
Modified:
stable/10/share/mk/bsd.test.mk
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/share/mk/bsd.test.mk
==============================================================================
--- stable/10/share/mk/bsd.test.mk Thu Oct 8 17:49:14 2015 (r289042)
+++ stable/10/share/mk/bsd.test.mk Thu Oct 8 17:55:53 2015 (r289043)
@@ -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
More information about the svn-src-stable-10
mailing list