Install /etc/dbus-1/system.d/org.rpm.conf

which was accidentially dropped when converting to cmake

Use CMAKE_INSTALL_FULL_SYSCONFDIR as it expands to /etc instead of
/usr/etc

Resolves: #2474
This commit is contained in:
Florian Festi 2023-04-11 13:35:04 +02:00 committed by Panu Matilainen
parent 909d237b5e
commit 2080896ce5
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ if(WITH_DBUS)
target_link_libraries(systemd_inhibit PRIVATE PkgConfig::DBUS)
add_library(dbus_announce MODULE dbus_announce.c)
target_link_libraries(dbus_announce PRIVATE PkgConfig::DBUS)
install(FILES
org.rpm.conf
DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/dbus-1/system.d/
)
endif()
if(WITH_IMAEVM)