From 596f2c7dbfabf7e64a64b99b0204a8eb85df1b57 Mon Sep 17 00:00:00 2001 From: gin66 <5549373+gin66@users.noreply.github.com> Date: Sun, 31 Oct 2021 10:41:56 +0100 Subject: [PATCH] Remove duplicated //etc for make install install -Dm644 scripts/beesd.conf.sample $(DESTDIR)/$(ETC_PREFIX)/bees/beesd.conf.sample will expand to //etc/bees/beesd.conf.sample. This patch removes the duplicated / --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c840c4..44913bd 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ install_bees: src $(RUN_INSTALL_TESTS) install_scripts: ## Install scipts install_scripts: scripts install -Dm755 scripts/beesd $(DESTDIR)$(PREFIX)/sbin/beesd - install -Dm644 scripts/beesd.conf.sample $(DESTDIR)/$(ETC_PREFIX)/bees/beesd.conf.sample + install -Dm644 scripts/beesd.conf.sample $(DESTDIR)$(ETC_PREFIX)/bees/beesd.conf.sample ifneq ($(SYSTEMD_SYSTEM_UNIT_DIR),) install -Dm644 scripts/beesd@.service $(DESTDIR)$(SYSTEMD_SYSTEM_UNIT_DIR)/beesd@.service endif