pflog/pfsync: Fix module build with VIMAGE=yes

pflog and pfsync's module Makefile fails to include opt_global.h to SRCS
leading to build error for VIMAGE case.

Reproduced with:
cd /usr/src/sys/modules/pflog && make VIMAGE=yes

PR:		229404
Submitted by:	eugen@
MFC after:	1 week
This commit is contained in:
Kristof Provost 2018-07-01 18:09:16 +00:00
parent b3ccfa8a60
commit 4733f21ffe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335847
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
KMOD= pflog
SRCS= if_pflog.c \
opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h
opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_global.h
SRCS+= bus_if.h device_if.h
.if !defined(KERNBUILDDIR)

View File

@ -4,7 +4,7 @@
KMOD= pfsync
SRCS= if_pfsync.c \
opt_pf.h opt_inet.h opt_inet6.h
opt_pf.h opt_inet.h opt_inet6.h opt_global.h
SRCS+= bus_if.h device_if.h
.if !defined(KERNBUILDDIR)