diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-08-02 08:35:51 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-08-02 08:35:51 +0000 |
commit | 4b330699f819a81d8e34d471225143ffeb321855 (patch) | |
tree | 3794bbf32b858fa79c3e362a4b95adc8a7863010 /cddl/usr.sbin/Makefile | |
parent | cd155b56033ab2693464bdade23e2ccd623e9936 (diff) | |
download | src-4b330699f819a81d8e34d471225143ffeb321855.tar.gz src-4b330699f819a81d8e34d471225143ffeb321855.zip |
Convert traditional ${MK_TESTS} conditional idiom for including test
directories to SUBDIR.${MK_TESTS} idiom
This is being done to pave the way for future work (and homogenity) in
^/projects/make-check-sandbox .
No functional change intended.
MFC after: 1 weeks
Notes
Notes:
svn path=/head/; revision=321912
Diffstat (limited to 'cddl/usr.sbin/Makefile')
-rw-r--r-- | cddl/usr.sbin/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cddl/usr.sbin/Makefile b/cddl/usr.sbin/Makefile index 8fb489ad3259..a7ee242662a1 100644 --- a/cddl/usr.sbin/Makefile +++ b/cddl/usr.sbin/Makefile @@ -5,14 +5,11 @@ SUBDIR= ${_dtrace} \ ${_lockstat} \ ${_plockstat} \ - ${_tests} \ ${_zdb} \ ${_zfsd} \ ${_zhack} -.if ${MK_TESTS} != "no" -_tests= tests -.endif +SUBDIR.${MK_TESTS}+= tests .if ${MK_ZFS} != "no" .if ${MK_LIBTHR} != "no" |