mirror of
https://github.com/opnsense/src.git
synced 2026-05-27 20:02:43 -04:00
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>
11 lines
146 B
Makefile
11 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>
|