Przeglądaj źródła

Merge branch 'bugfix/lwip_dhcp_restore_last' into 'master'

lwip: fix dhcp_server path (GitHub PR)

Closes IDFGH-9297 and IDFGH-9309

See merge request espressif/esp-idf!22251
David Čermák 3 lat temu
rodzic
commit
080fd7e14f
1 zmienionych plików z 1 dodań i 1 usunięć
  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}"