diff options
author | Eugene Grosbein <eugen@FreeBSD.org> | 2023-04-11 10:31:34 +0000 |
---|---|---|
committer | Eugene Grosbein <eugen@FreeBSD.org> | 2023-04-14 04:43:20 +0000 |
commit | a402e63f4c677325b63bd7c4bf7cc905d83b762f (patch) | |
tree | 8ce555067168a5c7858cdfa7fa47296cc8a2b160 | |
parent | 629471024b87d9be129bc60943a56fa7f3da2cc6 (diff) |
imgact_binmisc: MFC: unbreak module build outside of kernel build environment
(cherry picked from commit 37f4cb29bdafa33ec46f505fb5b769bafddcac74)
-rw-r--r-- | sys/modules/imgact_binmisc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/imgact_binmisc/Makefile b/sys/modules/imgact_binmisc/Makefile index 6d8f64530db3..e7b7155258cb 100644 --- a/sys/modules/imgact_binmisc/Makefile +++ b/sys/modules/imgact_binmisc/Makefile @@ -3,6 +3,6 @@ .PATH: ${SRCTOP}/sys/kern KMOD= imgact_binmisc -SRCS= imgact_binmisc.c +SRCS= vnode_if.h imgact_binmisc.c .include <bsd.kmod.mk> |