git: 8e7e3013e08f - stable/12 - if_epair: MFC: fix module build outside of kernel build environment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 14 Dec 2021 13:30:13 UTC
The branch stable/12 has been updated by eugen:
URL: https://cgit.FreeBSD.org/src/commit/?id=8e7e3013e08f99281f54baaa5561005e54acb8e6
commit 8e7e3013e08f99281f54baaa5561005e54acb8e6
Author: Eugene Grosbein <eugen@FreeBSD.org>
AuthorDate: 2021-12-11 04:07:50 +0000
Commit: Eugene Grosbein <eugen@FreeBSD.org>
CommitDate: 2021-12-14 13:26:33 +0000
if_epair: MFC: fix module build outside of kernel build environment
(cherry picked from commit 7a382e744b0b0ba9b51dc34bfa0cd1515f744f25)
---
sys/modules/if_epair/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/modules/if_epair/Makefile b/sys/modules/if_epair/Makefile
index ee0757577c4f..3e102413bfe2 100644
--- a/sys/modules/if_epair/Makefile
+++ b/sys/modules/if_epair/Makefile
@@ -3,6 +3,6 @@
.PATH: ${SRCTOP}/sys/net
KMOD= if_epair
-SRCS= if_epair.c
+SRCS= bus_if.h device_if.h if_epair.c
.include <bsd.kmod.mk>