diff mbox series

[2/2] Fix MBO build with GAS dependency

Message ID 20231127192101.123889-1-Chaitanya.Tata@nordicsemi.no
State Accepted
Headers show
Series [1/2] De-couple MBO and WNM | expand

Commit Message

Krishna Chaitanya Nov. 27, 2023, 7:21 p.m. UTC
On the default configuration if MBO only is enabled then build breaks as GAS
is not selected, if other features that auto-enable GAS are selected
then it works.

Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
---
 wpa_supplicant/Makefile | 1 +
 1 file changed, 1 insertion(+)

Comments

Jouni Malinen Dec. 6, 2023, 11:03 a.m. UTC | #1
On Tue, Nov 28, 2023 at 12:51:01AM +0530, Chaitanya Tata wrote:
> On the default configuration if MBO only is enabled then build breaks as GAS
> is not selected, if other features that auto-enable GAS are selected
> then it works.

Thanks, applied.
diff mbox series

Patch

diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile
index 8adbc3b41..0702c6311 100644
--- a/wpa_supplicant/Makefile
+++ b/wpa_supplicant/Makefile
@@ -1054,6 +1054,7 @@  endif
 ifdef CONFIG_MBO
 OBJS += mbo.o
 CFLAGS += -DCONFIG_MBO
+NEED_GAS=y
 endif
 
 ifdef NEED_RSN_AUTHENTICATOR