diff options
author | asomers <asomers@FreeBSD.org> | 2014-02-08 00:20:21 +0000 |
---|---|---|
committer | asomers <asomers@FreeBSD.org> | 2014-02-08 00:20:21 +0000 |
commit | a174ca7085513536cf96991aaf571921d71f5e7d (patch) | |
tree | a95a714a5b43fb8a0f5d9093db8eca04d90e97e2 /tests | |
parent | 8bd44e34417ab63726781693541b9fde7798852f (diff) | |
download | FreeBSD-src-a174ca7085513536cf96991aaf571921d71f5e7d.zip FreeBSD-src-a174ca7085513536cf96991aaf571921d71f5e7d.tar.gz |
tests/sys/Makefile
use TESTS_SUBDIRS for kern instead of SUBDIRS. I don't think it
makes a difference in this case, but TESTS_SUBDIRS is generally
correct for subdirectories that contain tests.
Sponsored by: Spectra Logic
MFC after: 5 days
X-MFC-With: r261133
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sys/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/sys/Makefile b/tests/sys/Makefile index 85d51df..ea8b3c4 100644 --- a/tests/sys/Makefile +++ b/tests/sys/Makefile @@ -2,13 +2,11 @@ .include <bsd.own.mk> -SUBDIR= kern +.PATH: ${.CURDIR}/.. + +TESTS_SUBDIRS+= kern TESTSDIR= ${TESTSBASE}/sys KYUAFILE= yes -CLEANFILES+= Kyuafile -Kyuafile: ${.CURDIR}/../Kyuafile - cp -f ${.CURDIR}/../Kyuafile . - .include <bsd.test.mk> |