diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-10-18 20:32:59 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-10-18 20:32:59 +0200 |
commit | 20a7d8d23a19530207378fc74ddd558232240f43 (patch) | |
tree | 2307a9c3a214ef70b959528cd1358b8fc0ca3e85 /misc | |
parent | 93bd014c8c416580d8eeaa487e180d6c2549028c (diff) |
Add some missing clean-files
Diffstat (limited to 'misc')
-rw-r--r-- | misc/systemd/local.mk | 2 | ||||
-rw-r--r-- | misc/upstart/local.mk | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/misc/systemd/local.mk b/misc/systemd/local.mk index 004549fd2..785db52a4 100644 --- a/misc/systemd/local.mk +++ b/misc/systemd/local.mk @@ -2,4 +2,6 @@ ifeq ($(OS), Linux) $(foreach n, nix-daemon.socket nix-daemon.service, $(eval $(call install-file-in, $(d)/$(n), $(prefix)/lib/systemd/system, 0644))) + clean-files += $(d)/nix-daemon.socket $(d)/nix-daemon.service + endif diff --git a/misc/upstart/local.mk b/misc/upstart/local.mk index a73dc061e..5071676dc 100644 --- a/misc/upstart/local.mk +++ b/misc/upstart/local.mk @@ -2,4 +2,6 @@ ifeq ($(OS), Linux) $(foreach n, nix-daemon.conf, $(eval $(call install-file-in, $(d)/$(n), $(sysconfdir)/init, 0644))) + clean-files += $(d)/nix-daemon.conf + endif |