Cmake: Do not use CMAKE_INSTALL_LIBDIR for the systemd service

In some distros CMAKE_INSTALL_LIBDIR is lib64, but systemd services are always in lib (not lib64)
This commit is contained in:
Pavel Solovev 2024-01-07 22:17:24 +03:00 committed by Mihai Fufezan
parent 899a70e759
commit 24fa87b939
1 changed files with 1 additions and 1 deletions

View File

@ -104,4 +104,4 @@ install(TARGETS xdg-desktop-portal-hyprland DESTINATION ${CMAKE_INSTALL_LIBEXECD
install(FILES hyprland.portal DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/xdg-desktop-portal/portals")
install(FILES ${CMAKE_BINARY_DIR}/org.freedesktop.impl.portal.desktop.hyprland.service DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/dbus-1/services")
install(FILES ${CMAKE_BINARY_DIR}/contrib/systemd/xdg-desktop-portal-hyprland.service DESTINATION "${CMAKE_INSTALL_LIBDIR}/systemd/user")
install(FILES ${CMAKE_BINARY_DIR}/contrib/systemd/xdg-desktop-portal-hyprland.service DESTINATION "lib/systemd/user")