aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2023-06-02 16:11:27 +0000
committerMark Johnston <markj@FreeBSD.org>2023-06-02 16:17:44 +0000
commit6a3e9a885a9f27863883fc9500975e4e6f6c9fde (patch)
tree93113d8bc9c40f17ecf66f3e53c4af837d915a19
parent9b1d87286c78266dc76d32a06ed19bf3e93c0a3b (diff)
downloadsrc-6a3e9a885a9f27863883fc9500975e4e6f6c9fde.tar.gz
src-6a3e9a885a9f27863883fc9500975e4e6f6c9fde.zip
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")
-rw-r--r--sys/modules/nlsysevent/Makefile2
1 files changed, 1 insertions, 1 deletions
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>