From 52eab870e596300324d98cda2874a43eb4a40955 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Fri, 1 Dec 2023 17:59:34 +0800 Subject: [PATCH] fix(build-system/example): Updated dead URL for downloading tinyxml2 The import_lib example contained a fallback mirror for downloading tinyxml2 sources but this link was dead. If this mirror was used it would cause the build to fail. --- .../cmake/import_lib/components/tinyxml2/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/build_system/cmake/import_lib/components/tinyxml2/CMakeLists.txt b/examples/build_system/cmake/import_lib/components/tinyxml2/CMakeLists.txt index a3267a016f..5c20751bb7 100644 --- a/examples/build_system/cmake/import_lib/components/tinyxml2/CMakeLists.txt +++ b/examples/build_system/cmake/import_lib/components/tinyxml2/CMakeLists.txt @@ -20,7 +20,7 @@ externalproject_add(tinyxml2_proj # Download the source code of the third party project from the following URL. # (Two URLs are provided, the 2nd one is the mirror for Chinese users) URL https://github.com/leethomason/tinyxml2/archive/refs/tags/9.0.0.zip - https://gitcode.net/mirrors/leethomason/tinyxml2/-/archive/9.0.0/tinyxml2-9.0.0.zip + https://dl.espressif.com/dl/tinyxml2/9.0.0.zip # (Downloading is not the only option; the library can also be located in your source tree. # Consult ExternalProject_Add function documentation for other options.)