Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jan 2023 16:24:47 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: c1e13c43f7a6 - stable/13 - rtw88: correct SRCS+= in Makefile
Message-ID:  <202301181624.30IGOlGS037884@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=c1e13c43f7a60e43419956df331f17fdfbbf77b4

commit c1e13c43f7a60e43419956df331f17fdfbbf77b4
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2022-11-28 15:48:44 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2023-01-18 13:24:07 +0000

    rtw88: correct SRCS+= in Makefile
    
    Properly spell a SRCS+= for an optional file (this is why it stayed
    unnoticed so far).
    
    (cherry picked from commit 4495b4eb510d87277ed2dd4d27f7cebc7a76b4a8)
---
 sys/modules/rtw88/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/modules/rtw88/Makefile b/sys/modules/rtw88/Makefile
index 396dd91726b2..c27d922d1124 100644
--- a/sys/modules/rtw88/Makefile
+++ b/sys/modules/rtw88/Makefile
@@ -18,7 +18,7 @@ SRCS+=	rtw8822c.c rtw8822c_table.c rtw8822ce.c		# 11ac
 SRCS+=	rx.c sar.c sec.c tx.c util.c
 
 .if defined(WITH_CONFIG_PM) && ${WITH_CONFIG_PM} > 0
-SRCR+=	wow.c
+SRCS+=	wow.c
 CFLAGS+=	-DCONFIG_PM=${WITH_CONFIG_PM}
 .endif
 



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