Fix tmpfiles.conf and sysusers.conf paths in SConstruct. (#8280)

This commit is contained in:
Gwyn Ciesla 2024-01-22 19:07:45 -06:00 committed by loonycyborg
parent 8b6ef6aeeb
commit 8e25550407
No known key found for this signature in database
GPG key ID: 6E8233FAB8F26D61

View file

@ -767,8 +767,8 @@ if not access(fifodir, F_OK):
env.Alias("install-wesnothd", fifodir)
if env["systemd"]:
env.InstallData("prefix", "wesnothd", "#packaging/systemd/wesnothd.service", "lib/systemd/system")
env.InstallData("prefix", "wesnothd", "#packaging/systemd/wesnothd/tmpfiles.conf", "lib/tmpfiles.d")
env.InstallData("prefix", "wesnothd", "#packaging/systemd/wesnothd/sysusers.conf", "lib/sysusers.d")
env.InstallData("prefix", "wesnothd", "#packaging/systemd/wesnothd.tmpfiles.conf", "lib/tmpfiles.d")
env.InstallData("prefix", "wesnothd", "#packaging/systemd/wesnothd.sysusers.conf", "lib/sysusers.d")
# Wesnoth campaign server
env.InstallBinary(campaignd)