From 79d37515dfa8fb48134ea6e47800b2a4bfedb7e4 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Fri, 3 Feb 2023 22:55:09 +0800 Subject: [PATCH] lwip: fix dhcp_server path The path for dhcp_server.c has changed from esp32/ to esp32xx/ This fixes the build when CONFIG_LWIP_DHCP_RESTORE_LAST_IP is enabled. Signed-off-by: Sean Cross --- components/lwip/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lwip/CMakeLists.txt b/components/lwip/CMakeLists.txt index 22ceb1de84..671da81e20 100644 --- a/components/lwip/CMakeLists.txt +++ b/components/lwip/CMakeLists.txt @@ -156,7 +156,7 @@ if(CONFIG_LWIP_DHCPS) endif() if(CONFIG_LWIP_DHCP_RESTORE_LAST_IP) - list(APPEND srcs "port/esp32/netif/dhcp_state.c") + list(APPEND srcs "port/esp32xx/netif/dhcp_state.c") endif() idf_component_register(SRCS "${srcs}"