From 75e64085108adacae779e255b130c34b3d775332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Sun, 24 Oct 2021 02:21:57 +0200 Subject: [PATCH] Added openRC daemon --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1ed85dc..d84bbbb 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ install: @# OpenRC detected on system, install OpenRC daemon @if [[ $(OPENRC) = true ]]; then \ install -Dm744 -t "$(BIN_DIR)/" grub-btrfs-openrc; \ - install -Dm744 -t "$(DESTDIR)/init.d/" grub-btrfsd; \ + install -Dm744 -t "$(DESTDIR)/etc/init.d/" grub-btrfsd; \ fi @# Arch Linux like distros only : @if test "$(INITCPIO)" = true; then \ @@ -53,7 +53,7 @@ uninstall: @# OpenRC detected on system, install OpenRC daemon @if [[ $(OPENRC) = true ]]; then \ rm -f "$(BIN_DIR)/grub-btrfs.openrcbin; \ - rm -f "$(DESTDIR)/init.d/grub-btrfs.openrc; \ + rm -f "$(DESTDIR)/etc/init.d/grub-btrfs.openrc; \ fi @rm -f "$(LIB_DIR)/initcpio/install/grub-btrfs-overlayfs" @rm -f "$(LIB_DIR)/initcpio/hooks/grub-btrfs-overlayfs"