minor: Fix cross-compile SYSCONFDIR install partially

This commit is contained in:
Christian W. Zuckschwerdt 2024-02-23 14:43:59 +01:00
parent 5786c01c8c
commit c7e2aee002

View file

@ -6,7 +6,9 @@ file(GLOB RTL433_CONF_FILES "*.conf")
# Note that apparently bare `etc` or relative CMAKE_INSTALL_SYSCONFDIR
# always gets CMAKE_INSTALL_PREFIX prepended.
# Use absolute CMAKE_INSTALL_FULL_SYSCONFDIR to get /etc for /usr prefix.
# Note that CMAKE_STAGING_PREFIX should contain CMAKE_INSTALL_PREFIX but
# that component is not stripped here. Breaks cross-compile SYSCONFDIR.
install(FILES
${RTL433_CONF_FILES}
DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/rtl_433
DESTINATION ${CMAKE_STAGING_PREFIX}${CMAKE_INSTALL_FULL_SYSCONFDIR}/rtl_433
)