From b1ac909c812b3c45858dccaab9d82fce122183b5 Mon Sep 17 00:00:00 2001 From: abba23 Date: Wed, 5 May 2021 11:26:46 +0200 Subject: [PATCH] Prefix config file install path with DESTDIR --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 58293a6..161ad08 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PROFILE ?= release BINARY_PATH = target/$(PROFILE)/libspotifyadblock.so CONFIG_PATH = config.toml BINARY_TARGET = $(DESTDIR)$(PREFIX)/lib/$(NAME).so -CONFIG_TARGET = /etc/$(NAME)/config.toml +CONFIG_TARGET = $(DESTDIR)/etc/$(NAME)/config.toml .PHONY: all all: $(BINARY_PATH)