Date: Fri, 6 Aug 2021 13:21:44 GMT From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b542c9e42ba4 - main - modules: felix: Add needed dependencies Message-ID: <202108061321.176DLihO059481@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=b542c9e42ba404b12facf2a51b4c2504bb14eab9 commit b542c9e42ba404b12facf2a51b4c2504bb14eab9 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2021-08-06 13:20:06 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2021-08-06 13:21:31 +0000 modules: felix: Add needed dependencies Modules should list all needed _if dependencies in their makefile otherwise if one compiles a kernel that didn't compile those files the module won't build. Fixes: 451bcf1b3601 --- sys/modules/felix/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/felix/Makefile b/sys/modules/felix/Makefile index cfe36a58c3dc..47747ffaa11e 100644 --- a/sys/modules/felix/Makefile +++ b/sys/modules/felix/Makefile @@ -29,6 +29,6 @@ .PATH: ${SRCTOP}/sys/dev/etherswitch/felix KMOD = felix -SRCS = felix.c +SRCS = felix.c etherswitch_if.c etherswitch_if.h .include <bsd.kmod.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108061321.176DLihO059481>