1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-21 23:32:35 +00:00

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

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()