From 7f0b5fac4b9e95dfe96a2d61a4469c9fe8ec4802 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Fri, 24 Feb 2023 13:24:57 -0800 Subject: [PATCH] [cmake] fix `OT_TCP` option (#8804) This commit fixes the `OT_TCP` option (removes extra comma in the definition). --- etc/cmake/options.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/cmake/options.cmake b/etc/cmake/options.cmake index 1f4e34bb1..73d491994 100644 --- a/etc/cmake/options.cmake +++ b/etc/cmake/options.cmake @@ -138,7 +138,7 @@ ot_option(OT_SLAAC OPENTHREAD_CONFIG_IP6_SLAAC_ENABLE "SLAAC address") ot_option(OT_SNTP_CLIENT OPENTHREAD_CONFIG_SNTP_CLIENT_ENABLE "SNTP client") ot_option(OT_SRP_CLIENT OPENTHREAD_CONFIG_SRP_CLIENT_ENABLE "SRP client") ot_option(OT_SRP_SERVER OPENTHREAD_CONFIG_SRP_SERVER_ENABLE "SRP server") -ot_option(OT_TCP OPENTHREAD_CONFIG_TCP_ENABLE, "TCP") +ot_option(OT_TCP OPENTHREAD_CONFIG_TCP_ENABLE "TCP") ot_option(OT_TIME_SYNC OPENTHREAD_CONFIG_TIME_SYNC_ENABLE "time synchronization service") ot_option(OT_TREL OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE "TREL radio link for Thread over Infrastructure feature") ot_option(OT_TX_BEACON_PAYLOAD OPENTHREAD_CONFIG_MAC_OUTGOING_BEACON_PAYLOAD_ENABLE "tx beacon payload")