From e2bcf5fafde68a031bc52d843b314b8804db9a1e Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 25 Jan 2022 18:44:39 -0500 Subject: Meta: Download PNP ID data with fallible download function --- Meta/CMake/pnp_ids.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Meta/CMake/pnp_ids.cmake b/Meta/CMake/pnp_ids.cmake index 8396006af5..498914e864 100644 --- a/Meta/CMake/pnp_ids.cmake +++ b/Meta/CMake/pnp_ids.cmake @@ -6,9 +6,8 @@ set(PNP_IDS_EXPORT_PATH ${CMAKE_BINARY_DIR}/pnp.ids.html) set(PNP_IDS_INSTALL_PATH ${CMAKE_INSTALL_DATAROOTDIR}/${PNP_IDS_FILE}) if(ENABLE_PNP_IDS_DOWNLOAD AND NOT EXISTS ${PNP_IDS_EXPORT_PATH}) - message(STATUS "Downloading PNP ID database from ${PNP_IDS_URL}...") file(MAKE_DIRECTORY ${CMAKE_INSTALL_DATAROOTDIR}) - file(DOWNLOAD ${PNP_IDS_URL} ${PNP_IDS_EXPORT_PATH} INACTIVITY_TIMEOUT 10) + download_file("${PNP_IDS_URL}" "${PNP_IDS_EXPORT_PATH}") set(PNP_IDS_HEADER LibEDID/PnpIDs.h) set(PNP_IDS_IMPLEMENTATION LibEDID/PnpIDs.cpp) -- cgit v1.2.3