Explorar o código

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 <sean@xobs.io>
Sean Cross %!s(int64=3) %!d(string=hai) anos
pai
achega
79d37515df
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/lwip/CMakeLists.txt

+ 1 - 1
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}"