Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Oct 2015 17:55:53 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r289043 - stable/10/share/mk
Message-ID:  <201510081755.t98HtrrP043573@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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