diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2020-11-16 17:20:35 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2020-11-16 17:20:35 +0000 |
commit | 73734d6eb1431928a4e2766c64b84d8845aea4ed (patch) | |
tree | 4323b38568651ba18ba83405fef624a29b6ec6ca /cddl | |
parent | dea8594f19cc463a25a8c6df97400702ff54a83b (diff) | |
download | src-73734d6eb1431928a4e2766c64b84d8845aea4ed.tar.gz src-73734d6eb1431928a4e2766c64b84d8845aea4ed.zip |
Add missing includes of src.opts.mk
Without this "SUBDIR.${MK_TESTS}=tests" would always expand to
"SUBDIR.=tests" resulting in the tests not being built.
Sponsored by: DARPA
Notes
Notes:
svn path=/head/; revision=367728
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/usr.bin/ztest/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cddl/usr.bin/ztest/Makefile b/cddl/usr.bin/ztest/Makefile index de8ae801bb76..0945bb962c63 100644 --- a/cddl/usr.bin/ztest/Makefile +++ b/cddl/usr.bin/ztest/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +.include <src.opts.mk> + ZFSTOP= ${SRCTOP}/sys/contrib/openzfs .PATH: ${ZFSTOP}/cmd/ztest |