git: 6a3e9a885a9f - main - nlsysevent: Fix the EXPORT_SYMS definition
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 Jun 2023 16:19:24 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=6a3e9a885a9f27863883fc9500975e4e6f6c9fde commit 6a3e9a885a9f27863883fc9500975e4e6f6c9fde Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2023-06-02 16:11:27 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2023-06-02 16:17:44 +0000 nlsysevent: Fix the EXPORT_SYMS definition EXPORT_SYMS=YES has a special meaning, EXPORT_SYMS=yes does not. Fixes: 8a2af0b469b6 ("nlsysevent: add a genetlink(4) module to report kernel events") --- sys/modules/nlsysevent/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/nlsysevent/Makefile b/sys/modules/nlsysevent/Makefile index d7d2100e3e66..6ec36f53ca8f 100644 --- a/sys/modules/nlsysevent/Makefile +++ b/sys/modules/nlsysevent/Makefile @@ -6,6 +6,6 @@ KMOD= nlsysevent SRCS= netlink_sysevent.c CFLAGS+= -I${SRCTOP}/sys/contrib/netlink -EXPORT_SYMS= yes +EXPORT_SYMS= YES .include <bsd.kmod.mk>