From 1028d1bf20c16aebd70f74dad1558b92dab28686 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 5 Mar 2026 23:06:27 -0500 Subject: [PATCH] CMakeLists: Use relative paths when marking some resources for installation on Linux --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 481d3659d3..4b0a36880f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -862,11 +862,11 @@ endif() if(CMAKE_SYSTEM_NAME MATCHES "Linux|FreeBSD|OpenBSD") # Install the application icon and menu item install(FILES Data/dolphin-emu.svg - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps) + DESTINATION share/icons/hicolor/scalable/apps) install(FILES Data/dolphin-emu.png - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/256x256/apps) + DESTINATION share/icons/hicolor/256x256/apps) install(FILES Data/dolphin-emu.desktop - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications) + DESTINATION share/applications) # Install manpages install(FILES Data/dolphin-emu.6 DESTINATION ${CMAKE_INSTALL_MANDIR}/man6)