svn commit: r367728 - in head: cddl/usr.bin/ztest usr.sbin/praudit
Brooks Davis
brooks at FreeBSD.org
Mon Nov 16 17:20:36 UTC 2020
Author: brooks
Date: Mon Nov 16 17:20:35 2020
New Revision: 367728
URL: https://svnweb.freebsd.org/changeset/base/367728
Log:
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
Modified:
head/cddl/usr.bin/ztest/Makefile
head/usr.sbin/praudit/Makefile
Modified: head/cddl/usr.bin/ztest/Makefile
==============================================================================
--- head/cddl/usr.bin/ztest/Makefile Mon Nov 16 16:53:46 2020 (r367727)
+++ head/cddl/usr.bin/ztest/Makefile Mon Nov 16 17:20:35 2020 (r367728)
@@ -1,5 +1,7 @@
# $FreeBSD$
+.include <src.opts.mk>
+
ZFSTOP= ${SRCTOP}/sys/contrib/openzfs
.PATH: ${ZFSTOP}/cmd/ztest
Modified: head/usr.sbin/praudit/Makefile
==============================================================================
--- head/usr.sbin/praudit/Makefile Mon Nov 16 16:53:46 2020 (r367727)
+++ head/usr.sbin/praudit/Makefile Mon Nov 16 17:20:35 2020 (r367728)
@@ -2,6 +2,8 @@
# $FreeBSD$
#
+.include <src.opts.mk>
+
OPENBSMDIR=${SRCTOP}/contrib/openbsm
.PATH: ${OPENBSMDIR}/bin/praudit
More information about the svn-src-all
mailing list