fix: Use non-lib64 systemd system unit dir path (#7115)

This is a common path across Linux distros.

Checked distros:
* Arch Linux
* Fedora
* Gentoo
* openSUSE
* Ubuntu
This commit is contained in:
luk1337 2024-09-24 01:32:25 +02:00 committed by GitHub
parent f6e1bb2d70
commit ed2c6c4085
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -56,6 +56,6 @@ foreach(P daemon)
if (WITH_SYSTEMD)
install(
FILES ${TR_NAME}-${P}.service
DESTINATION ${CMAKE_INSTALL_LIBDIR}/systemd/system)
DESTINATION lib/systemd/system)
endif()
endforeach()