From 9d5f1ac5dc3de503201ba13a490b46afc5f8e2bd Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Sun, 25 Feb 2024 23:17:41 +0100 Subject: [PATCH] Fix path --- vcpkg/ports/qgis/portfile.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcpkg/ports/qgis/portfile.cmake b/vcpkg/ports/qgis/portfile.cmake index 29f90d1167..9caa789cb7 100644 --- a/vcpkg/ports/qgis/portfile.cmake +++ b/vcpkg/ports/qgis/portfile.cmake @@ -226,7 +226,7 @@ endif() # crssync only runs when building natively. If we are cross-compiling, copy the srs.cb from the host installation. if(NOT HOST_TRIPLET STREQUAL TARGET_TRIPLET) - file(COPY "${CURRENT_HOST_INSTALLED_DIR}/share/qgis/resources/srs.db" DESTINATION "${CURRENT_PACKAGES_DIR}/share/qgis/resources/srs.db") + file(COPY "${CURRENT_HOST_INSTALLED_DIR}/share/qgis/resources/srs.db" DESTINATION "${CURRENT_PACKAGES_DIR}/share/qgis/resources") endif() file(GLOB QGIS_CMAKE_PATH ${CURRENT_PACKAGES_DIR}/*.cmake)