Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Jun 2023 16:19:24 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 6a3e9a885a9f - main - nlsysevent: Fix the EXPORT_SYMS definition
Message-ID:  <202306021619.352GJOo4059726@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306021619.352GJOo4059726>