From 10f5a954c61a30499a62640f93ef650050c61ba3 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Mon, 18 Sep 2017 13:36:34 +1200 Subject: Correct openrc directory path --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 44dd2b9..e5c107e 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ export OPENRC_DIR ?= /etc MACRO_PROG = ./replace.sh INIT_FILES = $(shell find init.d.in -type f | sed -e 's/\.in$$//g' -e 's/init\.d\.in/init.d/g') CONF_FILES = $(shell find conf.d.in -type f | sed -e 's/\.in$$//g' -e 's/conf\.d\.in/conf.d/g') -DEST_INIT_D = $(DESTDIR)/$(SYSCONFDIR)/init.d -DEST_CONF_D = $(DESTDIR)/$(SYSCONFDIR)/conf.d +DEST_INIT_D = $(DESTDIR)/$(OPENRC_DIR)/init.d +DEST_CONF_D = $(DESTDIR)/$(OPENRC_DIR)/conf.d all: $(INIT_FILES) $(CONF_FILES) -- cgit v1.1