cb625c1e17
Do not build or install pf tests if WITHOUT_PF is set. This fixes the build failure with WITHOUT_PF=yes. Reported by: Vladimir Zakharov <zakharov.vv@gmail.com>
12 lines
146 B
Makefile
12 lines
146 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/netpfil
|
|
|
|
.if ${MK_PF} != "no"
|
|
TESTS_SUBDIRS+= pf
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|