On Tue, Apr 11, 2023 at 10:00:16AM +0200, bi...@debian.org wrote: > Package: pass-extension-tomb > Version: 1.3-2 > Severity: serious > Tags: sid bookworm > User: debhel...@packages.debian.org > Usertags: systemd-files-in-usr-bookworm > > Dear Maintainer, > > It seems that your package pass-extension-tomb is shipping files (.service, > .socket or > .timer) in /usr/lib/systemd/system. [...]
The culprit seems to be here: https://sources.debian.org/src/pass-tomb/1.3-2/Makefile/#L21 (and also line 36) ``` @install -Dm0644 pass-close@.service "$(DESTDIR)$(LIBDIR)/systemd/system/pass-close@.service" ``` To get the correct path you could use: ``` pkg-config --variable=systemdsystemunitdir systemd ``` (Note: do not forget to also build-dep on the package containing systemd.pc as well as pkg-config itself.) Regards, Andreas Henriksson