summaryrefslogtreecommitdiff
path: root/Meta/CMake
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-01-25 22:13:22 -0500
committerAndreas Kling <kling@serenityos.org>2022-01-26 16:37:38 +0100
commite092f1614cd9f757a6d806a0729cf83e3e2c77cf (patch)
tree1c03324530c14a261ff024d1405b35137d7375cf /Meta/CMake
parent99c8dadcecf92cabca1bc93fd23db89332a46073 (diff)
downloadserenity-e092f1614cd9f757a6d806a0729cf83e3e2c77cf.zip
LibEDID: Rename the downloaded PNP IDs file
After fixing the CMake file to use the correct paths, users may have had to manually remove the existing downloaded pnp.ids.html for CMake to re- run the generator. So this change renames the downloaded file to pnp_ids.html to ensure everyone picks up that change without manual intervention.
Diffstat (limited to 'Meta/CMake')
-rw-r--r--Meta/CMake/pnp_ids.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/CMake/pnp_ids.cmake b/Meta/CMake/pnp_ids.cmake
index b9a2d4fa29..3ffcff7488 100644
--- a/Meta/CMake/pnp_ids.cmake
+++ b/Meta/CMake/pnp_ids.cmake
@@ -2,7 +2,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/utils.cmake)
set(PNP_IDS_FILE pnp.ids)
set(PNP_IDS_URL http://www.uefi.org/uefi-pnp-export)
-set(PNP_IDS_EXPORT_PATH ${CMAKE_BINARY_DIR}/pnp.ids.html)
+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})