diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-07-08 12:40:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 12:40:54 +0200 |
commit | 2172e60f7a53a56ff1ce04f3b683fb618fc5d3f7 (patch) | |
tree | a00b7d7ec683601412aa2915e78af29e7c564f97 /misc/upstart/local.mk | |
parent | 156666de3da4a754582259bcc2fe68018ed2d3a5 (diff) | |
parent | 4f80464645e4c8e7ca9455fc53cc76dc50f688ed (diff) |
Merge pull request #4935 from alyssais/host_os
Apply OS checks to host platform, not build
Diffstat (limited to 'misc/upstart/local.mk')
-rw-r--r-- | misc/upstart/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/upstart/local.mk b/misc/upstart/local.mk index 5071676dc..2fbfb29b9 100644 --- a/misc/upstart/local.mk +++ b/misc/upstart/local.mk @@ -1,4 +1,4 @@ -ifeq ($(OS), Linux) +ifdef HOST_LINUX $(foreach n, nix-daemon.conf, $(eval $(call install-file-in, $(d)/$(n), $(sysconfdir)/init, 0644))) |